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
|`STEMMAREST_ENDPOINT`| The URL where the Stemmarest backend is running |`http://127.0.0.1:8080/stemmarest`|
19
-
|`STEMMAWEB_MIDDLEWARE_URL`| The URL where this middleware is running |`http://127.0.0.1:3000`|
20
-
|`SECRET_KEY`| Secret key for the Flask application, used by [Flask-Login](https://github.com/maxcountryman/flask-login).<br />Generate it by executing `python -c 'import secrets; print(secrets.token_hex())'` in your shell. | 🚫 |
21
-
|`GOOGLE_CLIENT_ID`| Google OAuth client ID | 🚫 |
22
-
|`GOOGLE_CLIENT_SECRET`| Google OAuth client secret | 🚫 |
|`STEMMAWEB_FRONTEND_URL`| The URL of the frontend. Will be set as the redirect destination after Google OAuth |`http://127.0.0.1:5000`|
19
+
|`STEMMAWEB_MIDDLEWARE_URL`| The URL where this middleware is running |`''`|
20
+
|`STEMMAWEB_STATIC`| The directory that holds the static files in the front-end (for production mode service) |`static`|
21
+
|`SECRET_KEY`| Secret key for the Flask application, used by [Flask-Login](https://github.com/maxcountryman/flask-login).<br />Generate it by executing `python -c 'import secrets; print(secrets.token_hex())'` in your shell. | 🚫 |
22
+
|`GOOGLE_CLIENT_ID`| Google OAuth client ID | 🚫 |
23
+
|`GOOGLE_CLIENT_SECRET`| Google OAuth client secret | 🚫 |
|`STEMMAWEB_FRONTEND_URL`| The URL of the frontend, if the frontend is running separately. Will be set as the redirect destination after Google OAuth |`''`|
28
29
|`LOG_LEVEL`| Logging verbosity |`DEBUG`|
29
30
|`LOGFILE`| Destination file to store the logs, relative to this module's root |`stemmaweb_middleware.log`|
30
31
|`LOG_BACKTRACE`| Whether error backtraces should be logged |`True`|
31
-
|`GUNICORN_WORKERS`| Number of workers to be spawned by gunicorn in the production deployment. Passed to `--workers`|`4`|
32
-
|`GUNICORN_BIND`| Address to bind the WSGI server to. Passed to `--bind`|`0.0.0.0:3000`|
32
+
|`GUNICORN_WORKERS`| Number of workers to be spawned by gunicorn in the production deployment. Passed to `--workers`|🚫 |
33
+
|`GUNICORN_BIND`| Address to bind the WSGI server to. Passed to `--bind`|🚫 |
0 commit comments