2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 04:55:44 +00:00
Files
.github
InvenTree
ci
deploy
docker
Dockerfile
dev-config.env
docker-compose.dev.yml
docker-compose.sqlite.yml
docker-compose.yml
gunicorn.conf.py
init.sh
nginx.conf
nginx.dev.conf
prod-config.env
requirements.txt
sqlite-config.env
images
.eslintrc.yml
.gitattributes
.gitignore
.gitpod.yml
CONTRIBUTING.md
LICENSE
README.md
RELEASE.md
crowdin.yml
package-lock.json
package.json
requirements.txt
setup.cfg
tasks.py
InvenTree/docker/dev-config.env

18 lines
493 B
Bash

# InvenTree environment variables for a development setup
# Set DEBUG to False for a production environment!
INVENTREE_DEBUG=True
INVENTREE_DEBUG_LEVEL=INFO
# Database configuration options
# Note: The example setup is for a PostgreSQL database (change as required)
INVENTREE_DB_ENGINE=postgresql
INVENTREE_DB_NAME=inventree
INVENTREE_DB_HOST=inventree-dev-db
INVENTREE_DB_PORT=5432
INVENTREE_DB_USER=pguser
INVENTREE_DB_PASSWORD=pgpassword
# Enable plugins?
INVENTREE_PLUGINS_ENABLED=True