mirror of
https://github.com/inventree/InvenTree.git
synced 2025-08-13 07:10:53 +00:00
.devcontainer
.devops
.github
.vscode
InvenTree
ci
contrib
deploy
docker
docs
images
src
.deepsource.toml
.eslintrc.yml
.gitattributes
.gitignore
.pkgr.yml
.pre-commit-config.yaml
CONTRIBUTING.md
Dockerfile
LICENSE
Procfile
README.md
RELEASE.md
SECURITY.md
backportrc.json
crowdin.yml
docker-compose.yml
docker.dev.env
package-lock.json
package.json
pyproject.toml
readthedocs.yml
requirements-dev.in
requirements-dev.txt
requirements.in
requirements.txt
runtime.txt
tasks.py
yarn.lock
* Update heroku procfile - Fix command to run on ubuntu 20.04 - Add "invoke" command (duplicate of "cli") * Update docs for installer * Fix typo * Update root_commands.sh
9 lines
390 B
Plaintext
9 lines
390 B
Plaintext
# Web process: gunicorn
|
|
web: env/bin/gunicorn --chdir $APP_HOME/InvenTree -c InvenTree/gunicorn.conf.py InvenTree.wsgi -b 0.0.0.0:$PORT
|
|
# Worker process: qcluster
|
|
worker: env/bin/python 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
|