From e26f0cb6861679e958112a9ab95dd614da539cc4 Mon Sep 17 00:00:00 2001 From: Tobias Kunze Date: Wed, 20 Jul 2022 23:42:10 +0200 Subject: [PATCH] Add DEVELOPER setting to example config --- netbox/netbox/configuration_example.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/netbox/netbox/configuration_example.py b/netbox/netbox/configuration_example.py index ad0dcc7c3..8bfc320df 100644 --- a/netbox/netbox/configuration_example.py +++ b/netbox/netbox/configuration_example.py @@ -103,6 +103,9 @@ CORS_ORIGIN_REGEX_WHITELIST = [ # on a production system. DEBUG = False +# Set to True in addition to DEBUG above to enable the creation of new database migrations. +DEVELOPER = False + # Email settings EMAIL = { 'SERVER': 'localhost',