From 78dca1477c7cb61f9baf133cdd32d28f33cbdd7e Mon Sep 17 00:00:00 2001 From: Paul Bienkowski Date: Fri, 16 Sep 2022 10:14:56 +0200 Subject: [PATCH] Fix naming of AUTO_RELOAD/AUTO_RESTART --- api/config.dev.py | 2 +- api/config.py.example | 2 +- deployment/examples/config.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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