File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -249,6 +249,15 @@ cat <<EOF > .env
249249250250NPM_ADMIN_PASSWORD=${ var . password }
251251REDIS_PASSWORD=${ var . password }
252+
253+ DB_HOST=${ aws_db_instance . rds_postgres . endpoint }
254+ DB_PORT=5432
255+ DB_NAME=morimori
256+ DB_USERNAME=${ var . db_username }
257+ DB_PASSWORD=${ var . db_password }
258+ APP_1_DOMAIN=${ var . morimori_domain }
259+ GITHUB_ACCESS_TOKEN_1_OWNER=${ var . github_access_token_owner }
260+ GITHUB_ACCESS_TOKEN_1=${ var . github_access_token }
252261EOF
253262
254263# GHCR 로그인
Original file line number Diff line number Diff line change @@ -10,6 +10,14 @@ spring:
1010 username : ${DB_USERNAME}
1111 password : ${DB_PASSWORD}
1212 driver-class-name : org.postgresql.Driver
13+ jpa :
14+ hibernate :
15+ ddl-auto : update
16+ properties :
17+ hibernate :
18+ dialect : org.hibernate.dialect.PostgreSQLDialect
19+ show-sql : true
20+
1321logging :
1422 level :
1523 org.hibernate.orm.jdbc.bind : INFO
You can’t perform that action at this time.
0 commit comments