You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Most wsgi/asgi apps can be controlled by any number of servers (uvicorn/gunicorn/hypercorn), where typically you only need to indicate the object that is the actual asgi/uwsgi app (e.g. for the app instance in app.py: uvicorn app:app). #10823 adds a script that starts galaxy using python scripts/fapi.py -c config/galaxy.yml.
We should be able to run Galaxy with GALAXY_CONFIG_FILE=/path/to/config uvicorn galaxy:app, where GALAXY_CONFIG_FILE defaults to config/galaxy.yml
The text was updated successfully, but these errors were encountered:
Most wsgi/asgi apps can be controlled by any number of servers (uvicorn/gunicorn/hypercorn), where typically you only need to indicate the object that is the actual asgi/uwsgi app (e.g. for the app instance in app.py:
uvicorn app:app
).#10823 adds a script that starts galaxy using
python scripts/fapi.py -c config/galaxy.yml
.We should be able to run Galaxy with
GALAXY_CONFIG_FILE=/path/to/config uvicorn galaxy:app
, where GALAXY_CONFIG_FILE defaults to config/galaxy.ymlThe text was updated successfully, but these errors were encountered: