fix : file update

This commit is contained in:
lsh9672
2025-06-11 16:46:31 +09:00
parent e7a057cff3
commit 483ba6c8c3
8 changed files with 18 additions and 93 deletions
@@ -35,8 +35,22 @@ ai-api:
base-url: https://api.anthropic.com
model: claude-3-sonnet-20240229
#external-api:
# openai:
# api-key: ${OPENAI_API_KEY:}
# base-url: https://api.openai.com
# claude:
# api-key: ${CLAUDE_API_KEY:}
# base-url: https://api.anthropic.com
springdoc:
api-docs:
path: /api-docs
swagger-ui:
path: /swagger-ui.html
management:
endpoints:
web:
exposure:
include: health,info,metrics
@@ -1,46 +0,0 @@
server:
port: ${ANALYTICS_SERVICE_PORT:8084}
spring:
application:
name: analytics-service
datasource:
url: ${ANALYTICS_DB_URL:jdbc:postgresql://localhost:5432/hiorder_analytics}
username: ${ANALYTICS_DB_USERNAME:hiorder_user}
password: ${ANALYTICS_DB_PASSWORD:hiorder_pass}
driver-class-name: org.postgresql.Driver
jpa:
hibernate:
ddl-auto: ${JPA_DDL_AUTO:validate}
show-sql: ${JPA_SHOW_SQL:false}
properties:
hibernate:
format_sql: true
dialect: org.hibernate.dialect.PostgreSQLDialect
redis:
host: ${REDIS_HOST:localhost}
port: ${REDIS_PORT:6379}
password: ${REDIS_PASSWORD:}
external-api:
openai:
api-key: ${OPENAI_API_KEY:}
base-url: https://api.openai.com
claude:
api-key: ${CLAUDE_API_KEY:}
base-url: https://api.anthropic.com
springdoc:
api-docs:
path: /api-docs
swagger-ui:
path: /swagger-ui.html
management:
endpoints:
web:
exposure:
include: health,info,metrics