Skip to content

Commit adb712e

Browse files
committed
update: 개발환경 설정분리
1 parent 864e870 commit adb712e

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

pyconkr/settings-dev.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import os
2+
3+
DEBUG = True
4+
5+
# RDS
6+
DATABASES = {
7+
"default": {
8+
"ENGINE": "mysql.connector.django",
9+
"NAME": os.getenv("AWS_RDS_DATABASE"),
10+
"USER": os.getenv("AWS_RDS_USER_ID"),
11+
"PASSWORD": os.getenv("AWS_RDS_PW"),
12+
"HOST": os.getenv("AWS_RDS_HOST"),
13+
"PORT": os.getenv("AWS_RDS_PORT"),
14+
}
15+
}

0 commit comments

Comments
 (0)