Files
backend-go/config/config.yaml
2026-02-12 14:31:30 +08:00

20 lines
339 B
YAML

server:
port: "3000"
environment: "development"
database:
driver: "sqlite"
sqlite:
path: "./data/database.sqlite"
postgres:
host: "localhost"
port: "5432"
user: "trace"
password: "trace123"
dbname: "trace"
sslmode: "disable"
jwt:
secret: "your-secret-key-here-change-in-production"
expire: 7200