initial commit
This commit is contained in:
48
target/classes/application-dev.yml
Normal file
48
target/classes/application-dev.yml
Normal file
@ -0,0 +1,48 @@
|
||||
server:
|
||||
port: 8080
|
||||
|
||||
spring:
|
||||
config:
|
||||
activate:
|
||||
on-profile: dev
|
||||
jackson:
|
||||
time-zone: Asia/Jakarta
|
||||
datasource:
|
||||
url: jdbc:postgresql://localhost:5432/utmsng
|
||||
username: utms
|
||||
password: utms1234
|
||||
jpa:
|
||||
hibernate:
|
||||
ddl-auto: update
|
||||
properties:
|
||||
hibernate:
|
||||
format_sql: true
|
||||
open-in-view: true
|
||||
data:
|
||||
redis:
|
||||
host: localhost
|
||||
port: 6379
|
||||
timeout: 2s
|
||||
cache:
|
||||
type: redis
|
||||
activemq:
|
||||
broker-url: tcp://localhost:61616
|
||||
user: admin
|
||||
password: admin
|
||||
jms:
|
||||
listener:
|
||||
acknowledge-mode: auto
|
||||
app:
|
||||
security:
|
||||
login:
|
||||
max-failed-attempts: 5
|
||||
failed-attempt-window-seconds: 900
|
||||
lockout-duration-seconds: 300
|
||||
single-login:
|
||||
enabled: false
|
||||
jwt:
|
||||
secret: change-me-this-is-a-very-long-dev-jwt-secret-key-256-bits-min
|
||||
seed:
|
||||
enabled: true
|
||||
|
||||
|
||||
Reference in New Issue
Block a user