-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs : 성능테스트 스크립트 호출 ip 변경 feat : schedule 환경변수 redis로 변경
- Loading branch information
Showing
3 changed files
with
19 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,14 +34,14 @@ jobs: | |
source: build/libs/*.jar | ||
target: /app | ||
|
||
# - name: Deploy to Server2 | ||
# uses: appleboy/[email protected] | ||
# with: | ||
# host: ${{ secrets.SERVER_HOST2 }} # 서버 IP | ||
# username: ${{ secrets.SERVER_USER }} # 서버 사용자 이름 | ||
# password: ${{ secrets.SERVER_PASSWORD }} # 서버 비밀번호 | ||
# source: build/libs/*.jar | ||
# target: /app | ||
- name: Deploy to Server2 | ||
uses: appleboy/[email protected] | ||
with: | ||
host: ${{ secrets.SERVER_HOST2 }} # 서버 IP | ||
username: ${{ secrets.SERVER_USER }} # 서버 사용자 이름 | ||
password: ${{ secrets.SERVER_PASSWORD }} # 서버 비밀번호 | ||
source: build/libs/*.jar | ||
target: /app | ||
|
||
# Spring Boot 애플리케이션 실행 (Optional) | ||
- name: Restart Spring Boot Application | ||
|
@@ -53,11 +53,11 @@ jobs: | |
script: | | ||
/app/deploy.sh | ||
# - name: Restart Spring Boot Application2 | ||
# uses: appleboy/[email protected] | ||
# with: | ||
# host: ${{ secrets.SERVER_HOST2 }} | ||
# username: ${{ secrets.SERVER_USER }} | ||
# password: ${{ secrets.SERVER_PASSWORD }} | ||
# script: | | ||
# /app/deploy.sh | ||
- name: Restart Spring Boot Application2 | ||
uses: appleboy/[email protected] | ||
with: | ||
host: ${{ secrets.SERVER_HOST2 }} | ||
username: ${{ secrets.SERVER_USER }} | ||
password: ${{ secrets.SERVER_PASSWORD }} | ||
script: | | ||
/app/deploy.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
spring.profiles.include=real-db | ||
spring.sql.init.mode=never | ||
schedule.active=messageQ | ||
schedule.active=redis | ||
management.endpoints.web.exposure.include=* | ||
server.tomcat.mbeanregistry.enabled=true | ||
logging.level.com.zaxxer.hikari=TRACE | ||
logging.level.com.zaxxer.hikari=TRACE | ||
logging.level.com.zaxxer.hikari.HikariConfig=DEBUG |