feat(deploy): add PaaS templates and config
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
# Flynn PaaS-friendly configuration template
|
||||
#
|
||||
# Intended for: Fly.io / Railway / Render (or any platform that provides PORT).
|
||||
# - Binds the gateway on all interfaces (required for container/PaaS routing).
|
||||
# - Relies on `${ENV_VAR}` expansion so secrets stay in platform env vars.
|
||||
#
|
||||
# For a full example with more options, see: config/default.yaml
|
||||
|
||||
server:
|
||||
localhost: false
|
||||
port: 18800 # Overridden by PORT env var when set.
|
||||
|
||||
models:
|
||||
default:
|
||||
provider: anthropic
|
||||
model: claude-sonnet-4-20250514
|
||||
api_key: ${ANTHROPIC_API_KEY}
|
||||
|
||||
# Recommended safe defaults for internet-exposed deployments.
|
||||
pairing:
|
||||
enabled: true
|
||||
|
||||
tools:
|
||||
profile: messaging
|
||||
|
||||
sandbox:
|
||||
enabled: true
|
||||
|
||||
Reference in New Issue
Block a user