32 lines
567 B
YAML
32 lines
567 B
YAML
app:
|
|
name: "ULFlow Starter Kit"
|
|
version: "0.1.0"
|
|
environment: "development"
|
|
timezone: "Asia/Ho_Chi_Minh"
|
|
|
|
logger:
|
|
level: "info" # debug, info, warn, error
|
|
|
|
server:
|
|
host: "0.0.0.0"
|
|
port: 8080
|
|
read_timeout: 15
|
|
write_timeout: 15
|
|
shutdown_timeout: 30
|
|
trusted_proxies: []
|
|
allow_origins:
|
|
- "*"
|
|
|
|
database:
|
|
driver: "postgres"
|
|
host: "localhost"
|
|
port: 5432
|
|
username: "postgres"
|
|
password: "postgres"
|
|
database: "ulflow"
|
|
ssl_mode: "disable"
|
|
max_open_conns: 25
|
|
max_idle_conns: 5
|
|
conn_max_lifetime: 300
|
|
migration_path: "migrations"
|