Skip to content

Commit

Permalink
chore: dev > docker-compose 파일 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
clean2001 committed Jan 2, 2025
1 parent c2f254f commit f362e84
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 4 deletions.
66 changes: 66 additions & 0 deletions layer-api/infra/development/application.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
server:
port: 8085

spring:
config:
import: application-secret.properties
datasource:
url: ${AWS_PROD_DB_URL}
username: ${AWS_PROD_DB_NAME}
password: ${AWS_PROD_DB_PASSWORD}
driver-class-name: com.mysql.cj.jdbc.Driver
jpa:
hibernate:
ddl-auto: update
properties:
hibernate:
format_sql: true
show_sql: true
open-in-view: false
database: mysql

apple:
login:
issuer: ${DEV_APPLE_ISSUER}
client_id: ${DEV_APPLE_CLIENT_ID}
audience: ${DEV_APPLE_AUD}

kakao:
login:
api_key: ${DEV_KAKAO_API_KEY}
redirect_uri: ${DEV_KAKAO_REDIRECT_URI}
uri:
base: https://kauth.kakao.com
code: /oauth/authorize
token: /oauth/token
api:
uri:
base: https://kapi.kakao.com
user: /v2/user/me

google:
login:
client_id: ${DEV_GOOGLE_CLIENT_ID}
code_uri: ${DEV_GOOGLE_CODE_URI}
token_uri: ${DEV_GOOGLE_TOKEN_URI}
client_secret: ${DEV_GOOGLE_CLIENT_SECRET}
redirect_uri: ${DEV_GOOGLE_REDIRECT_URI}
code_redirect_uri: http://localhost:8080/api/auth/oauth2/google/code
sheet:
id: ${GOOGLE_SHEET_ID}
token_path: ${PROD_GOOGLE_TOKEN_PATH}
credential_path: ${PROD_GOOGLE_CREDENTIAL_PATH}

ncp:
storage:
region: ${STORAGE_REGION}
bucketName: ${STORAGE_NAME}
endpoint: ${STORAGE_ENDPOINT}
accessKey: ${STORAGE_ACCESS_KEY}
secretKey: ${STORAGE_SECRET_KEY}

openai:
systemContent: ${OPENAI_SYSTEM_CONTENT}
apiKey: ${OPENAI_API_KEY}
model: ${OPENAI_MODEL}
maxTokens: ${OPENAI_MAX_TOKENS}
4 changes: 2 additions & 2 deletions layer-api/infra/development/docker-compose-blue.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ services:
- "8081:8080"
environment:
- TZ=Asia/Seoul
- SPRING_PROFILES_ACTIVE=prod
- SPRING_PROFILES_ACTIVE=dev
volumes:
- ./application-secret.properties:/config/application-secret.properties
- ./tokens:/config/tokens
Expand Down Expand Up @@ -56,7 +56,7 @@ services:
- "3001:3000"
environment:
- TZ=Asia/Seoul
- SPRING_PROFILES_ACTIVE=prod
- SPRING_PROFILES_ACTIVE=dev
volumes:
- ./application-secret.properties:/config/application-secret.properties
- ./tokens:/config/tokens
Expand Down
4 changes: 2 additions & 2 deletions layer-api/infra/development/docker-compose-green.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ services:
- "8080:8080"
environment:
- TZ=Asia/Seoul
- SPRING_PROFILES_ACTIVE=prod
- SPRING_PROFILES_ACTIVE=dev
volumes:
- ./application-secret.properties:/config/application-secret.properties
- ./tokens:/config/tokens
Expand Down Expand Up @@ -56,7 +56,7 @@ services:
- "3000:3000"
environment:
- TZ=Asia/Seoul
- SPRING_PROFILES_ACTIVE=prod
- SPRING_PROFILES_ACTIVE=dev
volumes:
- ./application-secret.properties:/config/application-secret.properties
- ./tokens:/config/tokens
Expand Down

0 comments on commit f362e84

Please sign in to comment.