Skip to content

Commit ab7a26d

Browse files
committed
fix: 환경변수 정리
1 parent f190113 commit ab7a26d

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ jobs:
5858
fi
5959
6060
echo "[deploy] start new app"
61-
DB_PASSWORD='${{ secrets.DB_PASSWORD }}'\
62-
DISCORD_TOKEN='${{ secrets.DISCORD_TOKEN }}'\
61+
DB_PASSWORD=${{ secrets.DB_PASSWORD }}\
62+
DISCORD_TOKEN=${{ secrets.DISCORD_TOKEN }}\
6363
nohup java -jar build/libs/workingdead-0.0.1-SNAPSHOT.jar > app.log 2>&1 &
6464
6565
echo $! > app.pid

src/main/resources/application.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,20 +42,20 @@ spring:
4242
org.hibernate.SQL: DEBUG
4343
org.hibernate.type.descriptor.sql.BasicBinder: TRACE
4444
software.amazon.awssdk: INFO
45-
com.uniConnect.member.security.oauth: DEBUG
46-
47-
server:
48-
port: 8080
4945

5046
session:
5147
store-type: jdbc
5248
jdbc:
5349
initialize-schema: always # 부트가 Spring Session 스키마를 자동 생성
5450
table-name: spring_session # 기본값이라 생략 가능(소문자 권장)
55-
sql:
56-
init:
57-
mode: always # 외부 DB에서도 init 실행
58-
platform: postgresql # schema-@@platform@@.sql 매핑용
51+
52+
sql:
53+
init:
54+
mode: always # 외부 DB에서도 init 실행
55+
platform: postgresql # schema-@@platform@@.sql 매핑용
56+
57+
server:
58+
port: 8080
5959

6060
springdoc:
6161
api-docs:

0 commit comments

Comments
 (0)