starter-kit/templates/config.example.yaml
ulflow_phattt2901 d4c11c12be <chore>: Update port 3000 & update makefile
Change port and update makefile for Windows
2025-05-21 15:12:24 +07:00

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: 3000
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"