Skip to content

Commit d0120c6

Browse files
committed
✨️ feat : 오더 서비스 수정
1 parent db2f2ed commit d0120c6

2 files changed

Lines changed: 3 additions & 25 deletions

File tree

.github/workflows/ci-cd-order-service.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,6 @@ jobs:
3333
java-version: '21'
3434
distribution: 'temurin'
3535

36-
- name: Set up application.properties
37-
run: |
38-
mkdir -p "${{ env.SERVICE_NAME }}"/src/main/resources
39-
echo "${{ env.APPLICATION }}" > "${{ env.SERVICE_NAME }}/src/main/resources/application.properties"
40-
4136
- name: Grant execute permission for gradlew
4237
run: chmod +x ${{ env.SERVICE_NAME }}/gradlew
4338

order-service/src/main/resources/application.yml

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,10 @@
1+
server:
2+
port: 8100
3+
14
spring:
25
application:
36
name: ORDER-SERVICE
47

5-
datasource:
6-
driver-class-name: org.h2.Driver
7-
url: jdbc:h2:mem:testdb
8-
username: sa
9-
password:
10-
11-
h2:
12-
console:
13-
enabled: true
14-
path: /h2-console
15-
16-
jpa:
17-
database-platform: org.hibernate.dialect.H2Dialect
18-
hibernate:
19-
ddl-auto: create-drop
20-
show-sql: true
21-
properties:
22-
hibernate:
23-
format_sql: true
24-
258
springdoc:
269
api-docs:
2710
enabled: true

0 commit comments

Comments
 (0)