mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
41 lines
924 B
Python
41 lines
924 B
Python
###################################################################
|
|
# This file serves as a base configuration for testing purposes #
|
|
# only. It is not intended for production use. #
|
|
###################################################################
|
|
|
|
ALLOWED_HOSTS = ['*']
|
|
|
|
DATABASE = {
|
|
'NAME': 'netbox',
|
|
'USER': '',
|
|
'PASSWORD': '',
|
|
'HOST': 'localhost',
|
|
'PORT': '',
|
|
'CONN_MAX_AGE': 300,
|
|
}
|
|
|
|
PLUGINS = [
|
|
'extras.tests.dummy_plugin',
|
|
]
|
|
|
|
REDIS = {
|
|
'tasks': {
|
|
'HOST': 'localhost',
|
|
'PORT': 6379,
|
|
'PASSWORD': '',
|
|
'DATABASE': 0,
|
|
'DEFAULT_TIMEOUT': 300,
|
|
'SSL': False,
|
|
},
|
|
'caching': {
|
|
'HOST': 'localhost',
|
|
'PORT': 6379,
|
|
'PASSWORD': '',
|
|
'DATABASE': 1,
|
|
'DEFAULT_TIMEOUT': 300,
|
|
'SSL': False,
|
|
}
|
|
}
|
|
|
|
SECRET_KEY = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'
|