I have a Werkzeug application served on gunicorn. The script directory layout looks like this:
prj/
__init__.py
application.py :which has a WSGI application object "wsgi_app".
settings_app.py :settings for werkzeug applicaiton code.
Then, I usually use the following command-line to start the Werkzeug application on gunicorn.
$ gunicorn --worker-class=gevent --bind=0.0.0.0:80 --workers=5 --daemon [--debug] prj.application:wsgi_app
In case of "--debug", gunicorn turns on debugging. Because the "debug" variable of gunicorn affects only gunicorn itself behavior, I also put "DEBUG" variable in "settings_app.py" to change the application's behavior(logging level, template directory, and so on). I feel that is not DRY. Moreover, command-line "debug" option can not override the later "DEBUG" variable.
If gunicorn's configuration variables can be referred in the application code, I can ommit such duplicate copies of variables.
How to access gunicorn's configuration variables from application code?
Thanks.