24 lines
1009 B
Plaintext
24 lines
1009 B
Plaintext
spring.application.name=bibimbap
|
|
|
|
# PostgreSQL — 이 파일을 application.properties 로 복사한 뒤 값을 채우세요.
|
|
# cp src/main/resources/application.properties.example src/main/resources/application.properties
|
|
#
|
|
# 연결 실패(Connect timed out) 시: PC와 DB 서버가 같은 네트워크인지, 방화벽 5432,
|
|
# postgresql.conf listen_addresses, pg_hba.conf 허용을 확인하세요.
|
|
# 원격 DB 없이 로컬만: IntelliJ VM 옵션 또는 실행 인자에
|
|
# --spring.profiles.active=dev
|
|
# (H2 인메모리 — application-dev.yml)
|
|
spring.datasource.url=jdbc:postgresql://localhost:5432/bibimbap
|
|
spring.datasource.username=bibimbap
|
|
spring.datasource.password=changeme
|
|
spring.datasource.hikari.maximum-pool-size=10
|
|
|
|
spring.jpa.hibernate.ddl-auto=update
|
|
spring.jpa.open-in-view=false
|
|
spring.jpa.properties.hibernate.jdbc.time_zone=UTC
|
|
|
|
spring.servlet.multipart.max-file-size=512MB
|
|
spring.servlet.multipart.max-request-size=512MB
|
|
|
|
bibimbap.storage.root=${BIBIMBAP_STORAGE_ROOT:./data/webgl}
|