32 lines
527 B
YAML
32 lines
527 B
YAML
dev-mode: true
|
|
|
|
web:
|
|
addr: :8080
|
|
shutdown-timeout: 10
|
|
|
|
db:
|
|
# DB host
|
|
host: 127.0.0.1
|
|
# DB username
|
|
username: howmuch
|
|
# DB password
|
|
password: howmuch
|
|
# DB name
|
|
database: howmuch
|
|
# max idle connections
|
|
max-idle-connections: 100
|
|
# max open connections
|
|
max-open-connections: 100
|
|
# max connection life time
|
|
max-connection-life-time: 10s
|
|
|
|
log:
|
|
level: debug
|
|
disalbe-caller: false
|
|
disable-stacktrace: false
|
|
# console or json
|
|
format: console
|
|
output-paths:
|
|
- stdout
|
|
- /tmp/howmuch.log
|