2021-08-17 20:29:48 +10:00
|
|
|
# InvenTree environment variables for a development setup
|
2022-05-29 09:40:37 +10:00
|
|
|
# These variables will be used by the docker-compose.yml file
|
2021-08-17 20:29:48 +10:00
|
|
|
|
2022-04-20 23:15:37 +10:00
|
|
|
# Set DEBUG to True for a development setup
|
2021-08-17 20:29:48 +10:00
|
|
|
INVENTREE_DEBUG=True
|
2021-08-23 08:39:09 +10:00
|
|
|
INVENTREE_DEBUG_LEVEL=INFO
|
2021-08-17 20:45:57 +10:00
|
|
|
|
2021-12-21 00:34:23 +11:00
|
|
|
# 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
|
2022-01-11 12:35:32 +11:00
|
|
|
|
|
|
|
# Enable plugins?
|
2022-01-13 10:24:47 +11:00
|
|
|
INVENTREE_PLUGINS_ENABLED=True
|
2022-04-20 23:15:37 +10:00
|
|
|
|
2022-04-21 12:04:05 +10:00
|
|
|
COMPOSE_PROJECT_NAME=inventree-development
|