diff --git a/api/config.dev.py b/api/config.dev.py index e146973..7889740 100644 --- a/api/config.dev.py +++ b/api/config.dev.py @@ -2,7 +2,7 @@ HOST = "0.0.0.0" PORT = 3000 DEBUG = True VERBOSE = False -AUTO_RESTART = True +AUTO_RELOAD = True SECRET = "!!!!!!!!!!!!CHANGE ME!!!!!!!!!!!!" LEAN_MODE = False POSTGRES_URL = "postgresql+asyncpg://obs:obs@postgres/obs" diff --git a/api/config.py.example b/api/config.py.example index 2310250..9e6096d 100644 --- a/api/config.py.example +++ b/api/config.py.example @@ -5,7 +5,7 @@ PORT = 3000 # Extended log output, but slower DEBUG = False VERBOSE = DEBUG -AUTO_RESTART = DEBUG +AUTO_RELOAD = DEBUG # Turn on lean mode to simplify the setup. Lots of features will be # unavailable, but you will not need to manage OpenStreetMap data. Please make diff --git a/deployment/examples/config.py b/deployment/examples/config.py index 5a65d36..1927434 100644 --- a/deployment/examples/config.py +++ b/deployment/examples/config.py @@ -5,7 +5,7 @@ # Extended log output, but slower DEBUG = False VERBOSE = DEBUG -AUTO_RESTART = DEBUG +AUTO_RELOAD = DEBUG # Turn on lean mode to simplify the setup. Lots of features will be # unavailable, but you will not need to manage OpenStreetMap data. Please make