Skip to content

Commit 638a151

Browse files
committed
잘못된 환경변수 설정 수정
1 parent 15f7d3b commit 638a151

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pyconweb2022/pyconweb2022/settings_prod.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
"ENGINE": "django.db.backends.postgresql",
1010
"HOST": os.getenv("AWS_PSQL_HOST"),
1111
"PORT": os.getenv("AWS_PSQL_PORT"),
12-
"NAME": os.getenv("AWS_PSQL_DATABASE"),
13-
"USER": os.getenv("AWS_PSQL_USER_ID"),
14-
"PASSWORD": os.getenv("AWS_PSQL_PW"),
12+
"NAME": os.getenv("AWS_RDS_DATABASE"),
13+
"USER": os.getenv("AWS_RDS_USER_ID"),
14+
"PASSWORD": os.getenv("AWS_RDS_PW"),
1515
}
1616
}
1717
else:

0 commit comments

Comments
 (0)