From 049b33666ae42bf6caea8bfb4550c8e97f831015 Mon Sep 17 00:00:00 2001 From: bharat Date: Mon, 23 Dec 2024 16:29:52 -0500 Subject: [PATCH] push configpy --- netbox/netbox/configuration_testing.py | 49 -------------------------- 1 file changed, 49 deletions(-) delete mode 100644 netbox/netbox/configuration_testing.py 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 -}