Fix typo in Procfile (#7043)

This commit is contained in:
Oliver 2024-04-16 08:53:03 +10:00 committed by GitHub
parent d3a2eced97
commit 860ecc43e9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,7 +1,7 @@
# Web process: gunicorn # Web process: gunicorn
web: env/bin/gunicorn --chdir $APP_HOME/src/backend/InvenTree -c src/backend/InvenTree/gunicorn.conf.py InvenTree.wsgi -b 0.0.0.0:$PORT web: env/bin/gunicorn --chdir $APP_HOME/src/backend/InvenTree -c src/backend/InvenTree/gunicorn.conf.py InvenTree.wsgi -b 0.0.0.0:$PORT
# Worker process: qcluster # Worker process: qcluster
worker: env/bin/python src/backendInvenTree/manage.py qcluster worker: env/bin/python src/backend/InvenTree/manage.py qcluster
# Invoke commands # Invoke commands
invoke: echo "" | echo "" && . env/bin/activate && invoke invoke: echo "" | echo "" && . env/bin/activate && invoke
# CLI: Provided for backwards compatibility # CLI: Provided for backwards compatibility