-
Notifications
You must be signed in to change notification settings - Fork 111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
can't run GinanEDA #131
Comments
Hello You’ve successfully set up Ginan in a Docker container and are trying to run GinanEDA using the By default, when Flask runs on To fix this, you can modify the command you’re using to run Flask inside the container. Use the following command to bind Flask to 0.0.0.0, which makes the app accessible from outside the container (including your Windows host machine): FLASK_APP=index.py FLASK_RUN_HOST=0.0.0.0 flask run --host=0.0.0.0 --port=5000 This will allow you to access the GinanEDA web interface at You can run this command interactively inside the Docker container, and it will make the tool accessible without modifying any internal Flask code. This should solve your issue and allow you to fully use the EDA tool. |
Thank you for your support! I have successfully run the GinanEDA application, but I am encountering an issue when connecting to MongoDB. Specifically, when I connect to MongoDB, nothing appears in the EDA interface for further processing. Let me walk you through the steps I have taken so far: Steps I Followed:
Downloading Sample Data: Running the Processing Script:
The process completed without any apparent errors. Running GinanEDA: |
Hey, dear Ginan support.
I installed Ginan using docker in Windows with this docker-compose(my docker desktop use wsl to run):
I can not connect to MongoDB like that!
so I successfully downloaded example inputs and also ran MongoDB in the background using these codes:
after all of that I ran pea --config ppp_example.yaml and successfully got all trace files and GPS files
now I want to run GinanEDA but unfortunately, it does not appear in my browser(I use localhost).
I run the index.py and this code appears:
root@b7d249c42820:/ginan/scripts/GinanEDA# python3 index.py
Serving Flask app 'index'
Debug mode: off
WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.
Running on http://127.0.0.1:5000
Press CTRL+C to quit
my main problem is all of the ports in Ginan are not accessible on my localhost
The text was updated successfully, but these errors were encountered: