Skip to content

Commit

Permalink
Merge pull request #4 from Team-UMC/ci/#1/ci-cd-setting
Browse files Browse the repository at this point in the history
Ci/#1/ci cd setting
  • Loading branch information
junseokkim authored Jan 6, 2024
2 parents feb86ce + 6bbffd6 commit 8537174
Show file tree
Hide file tree
Showing 7 changed files with 1 addition and 10 deletions.
1 change: 0 additions & 1 deletion .github/workflows/umc-service-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ jobs:
run: |
# create application.yml
cd ./src/main
mkdir resources
cd ./resources
# application.yml 파일 생성하기
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/umc-service-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ jobs:
run: |
# create application.yml
cd ./src/main
mkdir resources
cd ./resources
cd ./resources
# application.yml 파일 생성하기
touch ./application.yml
Expand Down
2 changes: 0 additions & 2 deletions docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ services: # 컨테이너 설정
backend:
container_name: umc-service-dev
image: kimjunseok/umcservice-dev
env_file:
- .env
environment:
- SPRING_PROFILES_ACTIVE=dev
ports:
Expand Down
2 changes: 0 additions & 2 deletions docker-compose.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ services: # 컨테이너 설정
backend:
container_name: umc-service
image: kimjunseok/umcservice
env_file:
- .env
environment:
- SPRING_PROFILES_ACTIVE=prod
ports:
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/application-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ spring:
name: umc-service-dev
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: ${DATABASE_URL_DEV}

config:
import: classpath:application.yml
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/application-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ spring:
name: umc-service-local
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://localhost:3306/umc-service?serverTimezone=Asia/Seoul

config:
import: classpath:application.yml
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ spring:
name: umc-service-prod
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: ${DATABASE_URL}

config:
import: classpath:application.yml
Expand Down

0 comments on commit 8537174

Please sign in to comment.