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

# Optional: JWT secret for authentication
# FORGE_SECRET=your-secret-key-here

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