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- Loads nearest
flow.toml(or--configpath). - If
[lifecycle.domains]is configured:- runs
f domains add <host> <target> --replace - runs
f domains up(with configured engine when set)
- runs
- Runs lifecycle task:
[lifecycle].up_taskwhen configured- otherwise fallback order:
up, thendev
If 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