forked from nautobot/nautobot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev.env
43 lines (37 loc) · 1.38 KB
/
dev.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
NAUTOBOT_ALLOWED_HOSTS=".localhost 127.0.0.1 [::1]"
NAUTOBOT_CHANGELOG_RETENTION=0
NAUTOBOT_CONFIG=/opt/nautobot/nautobot_config.py
NAUTOBOT_DB_HOST=db
NAUTOBOT_DB_NAME=nautobot
NAUTOBOT_DB_PASSWORD=decinablesprewad
NAUTOBOT_DB_USER=nautobot
NAUTOBOT_DB_TIMEOUT=300
NAUTOBOT_NAPALM_TIMEOUT=5
NAUTOBOT_REDIS_HOST=redis
NAUTOBOT_REDIS_PASSWORD=decinablesprewad
NAUTOBOT_REDIS_PORT=6379
# Uncomment REDIS_SSL if using SSL
# NAUTOBOT_REDIS_SSL=True
NAUTOBOT_SECRET_KEY=012345678901234567890123456789012345678901234567890123456789
# Needed for MySQL, must match the values for Nautobot above
MYSQL_ROOT_PASSWORD=decinablesprewad
MYSQL_DATABASE=nautobot
MYSQL_PASSWORD=decinablesprewad
MYSQL_USER=nautobot
# Needed for Postgres, must match the values for Nautobot above
PGPASSWORD=decinablesprewad
POSTGRES_DB=nautobot
POSTGRES_PASSWORD=decinablesprewad
POSTGRES_USER=nautobot
# Needed for Redis, must match the values for Nautobot above
REDIS_PASSWORD=decinablesprewad
# Needed for Selenium integration tests
# WebDriver (Selenium client)
NAUTOBOT_SELENIUM_URL=http://selenium:4444/wd/hub
# LiveServer (Nautobot server)
NAUTOBOT_SELENIUM_HOST=nautobot
# Allow self signed git repositories for config contexts, export templates, ...
# GIT_SSL_NO_VERIFY="1"
# Set max connection age to the default for Django (close at end of each request)
# NodeJS container will cause connection exhaustion
NAUTOBOT_DB_TIMEOUT=0