dev: move Procfile to apiserver and change the config

This commit is contained in:
vamsi 2022-12-22 23:50:45 +05:30
parent b2a050570d
commit 423d6b4455
2 changed files with 2 additions and 3 deletions

View File

@ -1,3 +0,0 @@
web: node apps/app/server.js
backend_web: cd apiserver && gunicorn plane.wsgi -k gthread --workers 8 --bind 0.0.0.0:$PORT --config gunicorn.config.py --max-requests 10000 --max-requests-jitter 1000 --access-logfile -
worker: cd apiserver && python manage.py rqworker

2
apiserver/Procfile Normal file
View File

@ -0,0 +1,2 @@
web: gunicorn plane.wsgi -k gthread --workers 8 --bind 0.0.0.0:$PORT --config gunicorn.config.py --max-requests 10000 --max-requests-jitter 1000 --access-logfile -
worker: python manage.py rqworker