File tree 3 files changed +9
-3
lines changed
3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 19
19
20
20
current_directory_path = os .path .dirname (os .path .abspath (__file__ ))
21
21
22
-
23
22
if DJANGO_ENV == "prod" :
24
23
load_dotenv (os .path .join (current_directory_path , "../env/.env.prod" ))
25
24
else :
37
36
# SECURITY WARNING: keep the secret key used in production secret!
38
37
SECRET_KEY = os .getenv ("SECRET_KEY" )
39
38
39
+ DJANGO_ALLOWED_HOSTS = os .getenv ("DJANGO_ALLOWED_HOSTS" , "" )
40
+
40
41
# SECURITY WARNING: don't run with debug turned on in production!
41
42
DEBUG = DJANGO_ENV == "dev"
42
43
52
53
"127.0.0.1" ,
53
54
]
54
55
56
+ if DJANGO_ALLOWED_HOSTS :
57
+ ALLOWED_HOSTS .extend (DJANGO_ALLOWED_HOSTS .split ("," ))
58
+
55
59
CORS_ALLOWED_ORIGINS = [
56
60
"http://127.0.0.1:5173" ,
57
61
"http://localhost:5173" ,
Original file line number Diff line number Diff line change @@ -11,4 +11,5 @@ POSTGRES_USERNAME = postgres
11
11
POSTGRES_PASSWORD = postgres
12
12
POSTGRES_DATABASE = bwwc
13
13
MONGO_HOST = mongo
14
- MONGO_PORT = 27017
14
+ MONGO_PORT = 27017
15
+ DJANGO_ALLOWED_HOSTS = " "
Original file line number Diff line number Diff line change @@ -12,4 +12,5 @@ POSTGRES_USERNAME = postgres
12
12
POSTGRES_PASSWORD = postgres
13
13
POSTGRES_DATABASE = bwwc
14
14
MONGO_HOST = localhost
15
- MONGO_PORT = 27017
15
+ MONGO_PORT = 27017
16
+ DJANGO_ALLOWED_HOSTS = " "
You can’t perform that action at this time.
0 commit comments