mirror of
https://github.com/Rushilwiz/reinvest.git
synced 2025-04-05 13:00:19 -04:00
fix(backend): changed debug from string to bool
This commit is contained in:
parent
e4e1a605c8
commit
1dc45c62ee
|
@ -27,12 +27,12 @@ BASE_DIR = Path(__file__).resolve().parent.parent
|
||||||
SECRET_KEY = os.getenv("SECRET_KEY")
|
SECRET_KEY = os.getenv("SECRET_KEY")
|
||||||
|
|
||||||
# SECURITY WARNING: don't run with debug turned on in production!
|
# SECURITY WARNING: don't run with debug turned on in production!
|
||||||
DEBUG = os.getenv("DEBUG")
|
DEBUG = os.getenv("DEBUG") == 'True'
|
||||||
|
|
||||||
if DEBUG:
|
if DEBUG:
|
||||||
ALLOWED_HOSTS = ["*"]
|
ALLOWED_HOSTS = ["*"]
|
||||||
else:
|
else:
|
||||||
ALLOWED_HOSTS = ["reinvest.online"]
|
ALLOWED_HOSTS = ["api.reinvest.space"]
|
||||||
|
|
||||||
# Application definition
|
# Application definition
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user