33 lines
627 B
YAML
33 lines
627 B
YAML
application:
|
|
secretKey: "secret-key"
|
|
logLevel: info
|
|
logFile: "/var/log/test/iristest.log" # null to disable logging to file
|
|
debugSQL: true
|
|
isProduction: false
|
|
loopDelay: 3000
|
|
staticDir: "./static"
|
|
|
|
database:
|
|
host: "localhost"
|
|
port: 5432
|
|
name: "iristest"
|
|
username: "iristest"
|
|
password: "iristest"
|
|
|
|
redis:
|
|
host: "localhost"
|
|
port: 6379
|
|
username: "iristest"
|
|
password: "iristest"
|
|
database: ""
|
|
prefix: "myapp-"
|
|
|
|
smtp:
|
|
host: "smtp-host"
|
|
port: 587
|
|
username: "smtp-username"
|
|
password: "smtp-password"
|
|
startTLS: true
|
|
useTLS: false
|
|
fromEmail: "vitalwatchdog <noreply@vitalwatchdog.com>"
|