diff options
author | 2022-05-30 21:11:02 -0700 | |
---|---|---|
committer | 2022-05-30 21:11:02 -0700 | |
commit | a53923652216b29bcdbf02eb66ecb36b83ec455a (patch) | |
tree | ffb9949e7a55f81125f204542dea6e8a05e2019d /config | |
parent | Specify wsgi_app in Gunicorn config (diff) |
Add __all__ to all modules
Diffstat (limited to 'config')
-rw-r--r-- | config/gunicorn.conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/gunicorn.conf.py b/config/gunicorn.conf.py index 8b40d35..563f8ea 100644 --- a/config/gunicorn.conf.py +++ b/config/gunicorn.conf.py @@ -3,4 +3,4 @@ bind = "0.0.0.0:8060" logger_class = "snekbox.utils.gunicorn.GunicornLogger" access_logformat = "%(m)s %(U)s%(q)s %(s)s %(b)s %(L)ss" access_logfile = "-" -wsgi_app = "snekbox.api:SnekAPI" +wsgi_app = "snekbox:SnekAPI" |