Skip to content

Commit 4c7f4a9

Browse files
authored
feat: add allowed hosts from env variables to settings.py
1 parent b232fa9 commit 4c7f4a9

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

backend/backend/settings.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020
current_directory_path = os.path.dirname(os.path.abspath(__file__))
2121

22-
2322
if DJANGO_ENV == "prod":
2423
load_dotenv(os.path.join(current_directory_path, "../env/.env.prod"))
2524
else:
@@ -37,6 +36,8 @@
3736
# SECURITY WARNING: keep the secret key used in production secret!
3837
SECRET_KEY = os.getenv("SECRET_KEY")
3938

39+
DJANGO_ALLOWED_HOSTS = os.getenv("DJANGO_ALLOWED_HOSTS", "")
40+
4041
# SECURITY WARNING: don't run with debug turned on in production!
4142
DEBUG = DJANGO_ENV == "dev"
4243

@@ -52,6 +53,9 @@
5253
"127.0.0.1",
5354
]
5455

56+
if DJANGO_ALLOWED_HOSTS:
57+
ALLOWED_HOSTS.extend(DJANGO_ALLOWED_HOSTS.split(","))
58+
5559
CORS_ALLOWED_ORIGINS = [
5660
"http://127.0.0.1:5173",
5761
"http://localhost:5173",

backend/env/.env.dev

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ POSTGRES_USERNAME = postgres
1111
POSTGRES_PASSWORD = postgres
1212
POSTGRES_DATABASE = bwwc
1313
MONGO_HOST = mongo
14-
MONGO_PORT = 27017
14+
MONGO_PORT = 27017
15+
DJANGO_ALLOWED_HOSTS = ""

backend/env/.env.example

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ POSTGRES_USERNAME = postgres
1212
POSTGRES_PASSWORD = postgres
1313
POSTGRES_DATABASE = bwwc
1414
MONGO_HOST = localhost
15-
MONGO_PORT = 27017
15+
MONGO_PORT = 27017
16+
DJANGO_ALLOWED_HOSTS = ""

0 commit comments

Comments
 (0)