Project
{% for key, val in project_info.items() %}
{{ key }}
{% endfor %}
{{ val }}
{% if project_info %}
Project
{% for key, val in project_info.items() %}
{{ key }}
{% endfor %}
{{ val }}
| Env Var | Current | Default | Source | Description |
|---|---|---|---|---|
{{ s.env_var }} |
{{ s.current }}
{% if s.warning %}
{{ s.warning }} {% endif %} |
{{ s.default }} |
{{ s.source }} | {{ s.description }} |
| Key | Value |
|---|---|
{{ key }} |
{{ val }} |
Resolution order: explicit CLI flag > FW_* env var > .framework.yaml > default.
# Persistent (per-project) — recommended fw config set PORT 4000 fw config set CONTEXT_WINDOW 500000 # Per-session (env var) export FW_CONTEXT_WINDOW=1000000 # In systemd service Environment=FW_PORT=5050
Run fw doctor to validate overrides and check for out-of-range values.