Skip to content

Commit

Permalink
chore: batch yml 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
clean2001 committed Nov 10, 2024
1 parent 2163833 commit 4a211e1
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions layer-api/infra/production/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}

0 comments on commit 4a211e1

Please sign in to comment.