Skip to content

Commit

Permalink
ci : 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
K-KY committed Dec 31, 2024
1 parent 69a4d05 commit f23db93
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ jobs:
SPRING_DATASOURCE_URL: jdbc:mysql://localhost:3306/actions_test
SPRING_DATASOURCE_USERNAME: root
SPRING_DATASOURCE_PASSWORD: 12345678
SPRING_DATASOURCE_DRIVER_CLASS_NAME: ${{ secrets.SPRING_DATASOURCE_DRIVER_CLASS_NAME }}
SERVER_PORT: ${{ secrets.SERVER_PORT }}
SPRING_MAIN_BANNER_MODE: ${{ secrets.SPRING_MAIN_BANNER_MODE }}
SPRING_MAIN_WEB_APPLICATION_TYPE: ${{ secrets.SPRING_MAIN_WEB_APPLICATION_TYPE }}
permissions:
pull-requests: write # PR에 댓글, 체크 실행을 할 수 있는 권한
checks: write # 체크 결과를 기록할 권한
Expand Down
8 changes: 4 additions & 4 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ spring.application.name=DevLens
spring.config.import=optional:file:.env[.properties]

# Server Settings
server.port=${SERVER_PORT}
spring.main.web-application-type=${SPRING_MAIN_WEB_APPLICATION_TYPE}
spring.main.banner-mode=${SPRING_MAIN_BANNER_MODE}
server.port=8443
spring.main.web-application-type=servlet
spring.main.banner-mode=off

# DataSource Settings
spring.datasource.driver-class-name=${SPRING_DATASOURCE_DRIVER_CLASS_NAME}
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=${SPRING_DATASOURCE_URL}
spring.datasource.username=${SPRING_DATASOURCE_USERNAME}
spring.datasource.password=${SPRING_DATASOURCE_PASSWORD}
Expand Down

0 comments on commit f23db93

Please sign in to comment.