2022-04-20 11:44:22 +00:00
|
|
|
# InvenTree environment variables for a postgresql production setup
|
2021-08-18 03:02:36 +00:00
|
|
|
|
2022-04-20 12:35:53 +00:00
|
|
|
# Location of persistent database data (stored external to the docker containers)
|
|
|
|
# Note: You *must* un-comment this line, and point it to a path on your local machine
|
|
|
|
|
|
|
|
# e.g. Linux
|
|
|
|
#INVENTREE_EXT_VOLUME=/home/me/inventree-data
|
|
|
|
|
|
|
|
# e.g. Windows (docker desktop)
|
|
|
|
#INVENTREE_EXT_VOLUME=c:/Users/me/inventree-data
|
|
|
|
|
|
|
|
# Default web port for the InvenTree server
|
|
|
|
INVENTREE_WEB_PORT=1337
|
2021-08-18 03:02:36 +00:00
|
|
|
|
2022-04-20 13:34:50 +00:00
|
|
|
# Ensure debug is false for a production setup
|
2021-08-18 03:02:36 +00:00
|
|
|
INVENTREE_DEBUG=False
|
2021-08-22 18:59:51 +00:00
|
|
|
INVENTREE_LOG_LEVEL=WARNING
|
2021-08-18 03:02:36 +00:00
|
|
|
|
2022-05-28 23:40:37 +00:00
|
|
|
# InvenTree admin account details
|
|
|
|
# Un-comment (and complete) these lines to auto-create an admin acount
|
|
|
|
#INVENTREE_ADMIN_USER=
|
|
|
|
#INVENTREE_ADMIN_PASSWORD=
|
|
|
|
#INVENTREE_ADMIN_EMAIL=
|
|
|
|
|
2021-12-20 13:34:23 +00:00
|
|
|
# Database configuration options
|
2022-04-20 13:34:50 +00:00
|
|
|
# Note: The example setup is for a PostgreSQL database
|
2021-08-18 03:02:36 +00:00
|
|
|
INVENTREE_DB_ENGINE=postgresql
|
|
|
|
INVENTREE_DB_NAME=inventree
|
|
|
|
INVENTREE_DB_HOST=inventree-db
|
|
|
|
INVENTREE_DB_PORT=5432
|
2022-04-20 15:04:46 +00:00
|
|
|
|
|
|
|
# Database credentials - These must be configured before running
|
|
|
|
# Uncomment the lines below, and change from the default values!
|
|
|
|
#INVENTREE_DB_USER=pguser
|
|
|
|
#INVENTREE_DB_PASSWORD=pgpassword
|
2022-01-11 01:35:32 +00:00
|
|
|
|
2022-07-27 03:02:26 +00:00
|
|
|
# Redis cache setup (disabled by default)
|
|
|
|
# Un-comment the following lines to enable Redis cache
|
|
|
|
# Note that you will also have to run docker-compose with the --profile redis command
|
2022-06-10 10:16:19 +00:00
|
|
|
# Refer to settings.py for other cache options
|
2022-07-27 03:02:26 +00:00
|
|
|
#INVENTREE_CACHE_HOST=inventree-cache
|
|
|
|
#INVENTREE_CACHE_PORT=6379
|
2022-06-10 10:16:19 +00:00
|
|
|
|
2023-01-09 20:53:57 +00:00
|
|
|
# Options for gunicorn server
|
|
|
|
INVENTREE_GUNICORN_TIMEOUT=30
|
|
|
|
|
2022-11-01 22:51:36 +00:00
|
|
|
# Enable custom plugins?
|
2022-01-11 01:35:32 +00:00
|
|
|
INVENTREE_PLUGINS_ENABLED=False
|
2022-04-21 02:04:05 +00:00
|
|
|
|
2022-07-17 23:09:04 +00:00
|
|
|
# Image tag that should be used
|
|
|
|
INVENTREE_TAG=stable
|
|
|
|
|
2022-04-21 02:04:05 +00:00
|
|
|
COMPOSE_PROJECT_NAME=inventree-production
|