# 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_svelte_demo_template
POSTGRES_PORT=5432

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

# Webhook secret for HMAC-SHA256 signature validation
WEBHOOK_SECRET=demo-secret

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