mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-14 02:55:41 +00:00
.devcontainer
.github
.vscode
InvenTree
ci
deploy
docker
images
.eslintrc.yml
.gitattributes
.gitignore
.gitpod.yml
.pre-commit-config.yaml
CONTRIBUTING.md
Dockerfile
LICENSE
README.md
RELEASE.md
SECURITY.md
crowdin.yml
docker-compose.yml
docker.dev.env
package-lock.json
package.json
requirements-dev.in
requirements-dev.txt
requirements.in
requirements.txt
setup.cfg
tasks.py
* Simplification of development docker-compose file - Rename .env file - Remove requirement for variable interpolation within the docker-compose file itself * Add debug flag to CI test * Additional quick-start docs (for docker) * docker-compose update - Introspection did not work quite as expected - Set project name inside docker-compose file * Fixes for "setup_test" task - Check if directory exists before first deleting it - Parameterize the "path" variable - Add option to ignore update step * Add demo data dir to .gitignore * Remove debug call * Update CONTRIBUTING.md
19 lines
548 B
Bash
19 lines
548 B
Bash
# InvenTree environment variables for a development setup
|
|
# These variables will be used by the docker-compose.yml file
|
|
|
|
# Set DEBUG to True for a development setup
|
|
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
|