mirror of
https://github.com/inventree/InvenTree.git
synced 2025-08-05 03:21:35 +00:00
.devcontainer
.devops
.github
.vscode
assets
contrib
docs
src
.git-blame-ignore-revs
.gitattributes
.gitignore
.pkgr.yml
.pre-commit-config.yaml
CONTRIBUTING.md
LICENSE
Procfile
README.md
RELEASE.md
SECURITY.md
codecov.yml
crowdin.yml
pyproject.toml
readthedocs.yml
requirements.txt
runtime.txt
tasks.py
9 lines
426 B
Plaintext
9 lines
426 B
Plaintext
# 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
|
|
# Worker process: qcluster
|
|
worker: env/bin/python src/backend/InvenTree/manage.py qcluster
|
|
# Invoke commands
|
|
invoke: echo "" | echo "" && . env/bin/activate && invoke
|
|
# CLI: Provided for backwards compatibility
|
|
cli: echo "" | echo "" && . env/bin/activate && invoke
|