# Server
HOST=0.0.0.0
PORT=9081

# Logging (error, warn, info, debug, trace)
RUST_LOG=info,forge_runtime::function::executor=trace

# Postgres container settings
POSTGRES_USER=postgres
POSTGRES_PASSWORD=forge
POSTGRES_DB=forge_dioxus_demo_template
POSTGRES_PORT=5432

# JWT secret for authentication
JWT_SECRET=demo-jwt-secret-change-me-in-production

# Webhook HMAC secret (must match client-side secret)
WEBHOOK_SECRET=demo-secret

# Enable offline mode for sqlx compile-time checks
SQLX_OFFLINE=true
