mirror of
https://github.com/Rushilwiz/reinvest.git
synced 2025-04-04 20:40: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")
|
||||
|
||||
# SECURITY WARNING: don't run with debug turned on in production!
|
||||
DEBUG = os.getenv("DEBUG")
|
||||
DEBUG = os.getenv("DEBUG") == 'True'
|
||||
|
||||
if DEBUG:
|
||||
ALLOWED_HOSTS = ["*"]
|
||||
else:
|
||||
ALLOWED_HOSTS = ["reinvest.online"]
|
||||
ALLOWED_HOSTS = ["api.reinvest.space"]
|
||||
|
||||
# Application definition
|
||||
|
||||
|
@ -155,4 +155,4 @@ USE_TZ = True
|
|||
STATIC_URL = '/static/'
|
||||
|
||||
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
|
||||
MEDIA_URL = '/media/'
|
||||
MEDIA_URL = '/media/'
|
||||
|
|
Loading…
Reference in New Issue
Block a user