Skip to content

Commit

Permalink
🐛 fix: remove application-prod, dev file
Browse files Browse the repository at this point in the history
  • Loading branch information
seonghun-dev committed Jan 1, 2025
1 parent 93f1ba9 commit 0f7b372
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 126 deletions.
62 changes: 0 additions & 62 deletions backend/streetdrop-api/src/main/resources/application-dev.yml

This file was deleted.

63 changes: 0 additions & 63 deletions backend/streetdrop-api/src/main/resources/application-prod.yml

This file was deleted.

65 changes: 64 additions & 1 deletion backend/streetdrop-api/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,67 @@ server:
encoding:
charset: UTF-8
enabled: true
force: true
force: true
spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: ${DB_URL}
username: ${DB_USERNAME}
password: ${DB_PASSWORD}
hikari:
minimum-idle: 10
maximum-pool-size: 20
jpa:
hibernate:
ddl-auto: none
flyway:
enabled: true
baseline-on-migrate: true
cache:
type: redis
redis:
cache-null-values: true
data:
redis:
host: ${REDIS_HOST}
port: ${REDIS_PORT}
timeout: 30
swagger:
server-url: ${SWAGGER_SERVER_URL}
springdoc:
swagger-ui:
enabled: false
path: /swagger
slack:
token: ${slack.token}
monitoring-channel: error
report-channel: report
cloud:
aws:
credentials:
accessKey: ${AWS_ACCESS_KEY}
secretKey: ${AWS_SECRET_KEY}
s3:
bucket: ${AWS_BUCKET_NAME}
region:
auto: false
static: ${AWS_REGION}
stack:
auto: false
notification:
noti-server-url: ${NOTI_SERVER_URL}
discord:
webhook:
alert:
claim:
url: ${WEBHOOK_CLAIM_URL}
report-channel: claim
block:
url: ${WEBHOOK_BLOCK_URL}
report-channel: block
apple:
music:
api:
key: ${APPLE_MUSIC_API_KEY}
base-url: ${APPLE_MUSIC_BASE_URL}
get-catalog-charts-url: ${APPLE_MUSIC_GET_CATALOG_CHARTS_URL}

0 comments on commit 0f7b372

Please sign in to comment.