diff --git a/netbox/netbox/configuration_testing.py b/netbox/netbox/configuration_testing.py deleted file mode 100644 index 346cd89d2..000000000 --- a/netbox/netbox/configuration_testing.py +++ /dev/null @@ -1,49 +0,0 @@ -################################################################### -# This file serves as a base configuration for testing purposes # -# only. It is not intended for production use. # -################################################################### - -ALLOWED_HOSTS = ['*'] - -DATABASE = { - 'NAME': 'netbox', - 'USER': 'netbox', - 'PASSWORD': 'netbox', - 'HOST': 'localhost', - 'PORT': '', - 'CONN_MAX_AGE': 300, -} - -PLUGINS = [ - 'netbox.tests.dummy_plugin', -] - -REDIS = { - 'tasks': { - 'HOST': 'localhost', - 'PORT': 6379, - 'USERNAME': '', - 'PASSWORD': '', - 'DATABASE': 0, - 'SSL': False, - }, - 'caching': { - 'HOST': 'localhost', - 'PORT': 6379, - 'USERNAME': '', - 'PASSWORD': '', - 'DATABASE': 1, - 'SSL': False, - } -} - -SECRET_KEY = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789' - -DJANGO_ADMIN_ENABLED = True - -DEFAULT_PERMISSIONS = {} - -LOGGING = { - 'version': 1, - 'disable_existing_loggers': True -}