|
| 1 | +################################################################################ |
| 2 | +# DEV File: Store environment information. NOTE: Secrets NOT stored here! |
| 3 | +################################################################################ |
| 4 | +# Nautobot Configuration Environment Variables |
| 5 | +NAUTOBOT_ALLOWED_HOSTS=* |
| 6 | +NAUTOBOT_BANNER_TOP="Local" |
| 7 | +NAUTOBOT_CHANGELOG_RETENTION=0 |
| 8 | +NAUTOBOT_CONFIG=/opt/nautobot_config/nautobot_config.py |
| 9 | + |
| 10 | +NAUTOBOT_CREATE_SUPERUSER=true |
| 11 | +NAUTOBOT_DEBUG=True |
| 12 | +NAUTOBOT_DJANGO_EXTENSIONS_ENABLED=True |
| 13 | +NAUTOBOT_DJANGO_TOOLBAR_ENABLED=True |
| 14 | +NAUTOBOT_LOG_LEVEL=DEBUG |
| 15 | +NAUTOBOT_METRICS_ENABLED=True |
| 16 | +NAUTOBOT_NAPALM_TIMEOUT=5 |
| 17 | +NAUTOBOT_MAX_PAGE_SIZE=0 |
| 18 | + |
| 19 | +# Redis Configuration Environment Variables |
| 20 | +NAUTOBOT_REDIS_HOST=redis |
| 21 | +NAUTOBOT_REDIS_PORT=6379 |
| 22 | +# Uncomment NAUTOBOT_REDIS_SSL if using SSL |
| 23 | +# NAUTOBOT_REDIS_SSL=True |
| 24 | + |
| 25 | +# Nautobot DB Connection Environment Variables |
| 26 | +NAUTOBOT_DB_ENGINE=django.db.backends.postgresql |
| 27 | +NAUTOBOT_DB_NAME=nautobot |
| 28 | +NAUTOBOT_DB_USER=nautobot |
| 29 | +NAUTOBOT_DB_HOST=db |
| 30 | +NAUTOBOT_DB_TIMEOUT=300 |
| 31 | + |
| 32 | +# Use them to overwrite the defaults in nautobot_config.py |
| 33 | +# NAUTOBOT_DB_ENGINE=django.db.backends.postgresql |
| 34 | +# NAUTOBOT_DB_PORT=5432 |
| 35 | + |
| 36 | +# Needed for Postgres should match the values for Nautobot above |
| 37 | +POSTGRES_USER=${NAUTOBOT_DB_USER} |
| 38 | +POSTGRES_DB=${NAUTOBOT_DB_NAME} |
| 39 | + |
| 40 | +# Needed to initialize the Postgres super user, use the same for dev |
| 41 | +POSTGRES_PASSWORD=${NAUTOBOT_DB_PASSWORD} |
| 42 | + |
| 43 | +NAUTOBOT_SSOT_HIDE_EXAMPLE_JOBS="True" |
0 commit comments