mirror of
https://github.com/cekis/swg-api
synced 2026-07-13 22:01:02 -04:00
17 lines
761 B
Properties
17 lines
761 B
Properties
## use create when running the app for the first time
|
|
## then change to "update" which just updates the schema when necessary
|
|
spring.jpa.hibernate.ddl-auto=none
|
|
spring.jpa.database-platform=org.hibernate.dialect.Oracle10gDialect
|
|
spring.datasource.url= jdbc:oracle:thin:@192.168.68.135:1521:swg
|
|
spring.datasource.username=swg
|
|
spring.datasource.password=swg
|
|
spring.datasource.driver-class-name=oracle.jdbc.driver.OracleDriver
|
|
## this shows the sql actions in the terminal logs
|
|
spring.jpa.show-sql=true
|
|
spring.application.name=swg-api
|
|
spring.config.import=optional:swg-defaults.yml,optional:file:./swg-local.yml
|
|
swg.log.config.path=./exe/linux/
|
|
## JWT - Secret plus 24 hour expiration time (86400000)
|
|
swg.app.jwtSecret=smcisbestmc
|
|
swg.app.jwtExpirationMs=86400000
|