Some past commits might have contained Cursor's IP or accidentally commited API keys. Before making the repository public, all the history has been squashed into a single commit with.
17 lines
357 B
Plaintext
17 lines
357 B
Plaintext
[program:gunicorn]
|
|
directory=/app
|
|
command=gunicorn
|
|
app:create_app()
|
|
-b :5000
|
|
-w %(ENV_GUNICORN_WORKERS)s
|
|
-k gevent
|
|
--max-requests=5000
|
|
--max-requests-jitter=500
|
|
--log-level=%(ENV_LOG_LEVEL)s
|
|
autostart=true
|
|
autorestart=true
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|