docs/commands/up.md
Bring a project up using lifecycle conventions.
# Run lifecycle up (tries task "up", then "dev")
f up
# Pass args through to the selected task
f up -- --port 3001
flow.toml (or --config path).[lifecycle.domains] is configured:
f domains add <host> <target> --replacef domains up (with configured engine when set)[lifecycle].up_task when configuredup, then devIf no up task is found, command fails with guidance.
| Option | Description |
|---|---|
--config <PATH> | Path to flow.toml (default: ./flow.toml, searches upward when default is missing) |
ARGS... | Extra args passed to the selected lifecycle task |
[lifecycle]
up_task = "dev"
[lifecycle.domains]
host = "myflow.localhost"
target = "127.0.0.1:3000"
engine = "native"
remove_on_down = false
stop_proxy_on_down = false