set
Set an environment variable. Keys are auto-uppercased.Flags
| Flag | Description |
|---|---|
--app APP | App name or UUID (reads from config if omitted) |
--services SVC | Target specific services (repeatable) |
--restart | Restart the app after setting (redeploy with fresh env vars) |
Examples
JSON output
get
Get the plaintext value of an environment variable.Flags
| Flag | Description |
|---|---|
--app APP | App name or UUID (reads from config if omitted) |
--service SVC | Target a specific service |
JSON output
list
List all environment variables for an app. Values are masked.Flags
| Flag | Description |
|---|---|
--app APP | App name or UUID (reads from config if omitted) |
--services SVC | Target specific services (repeatable) |
JSON output
remove
Remove an environment variable. Keys are auto-uppercased.Flags
| Flag | Description |
|---|---|
--app APP | App name or UUID (reads from config if omitted) |
--services SVC | Target specific services (repeatable) |
JSON output
import
Import environment variables from a.env file.
Flags
| Flag | Description |
|---|---|
--app APP | App name or UUID (reads from config if omitted) |
--services SVC | Target specific services (repeatable). Cannot combine with --all. |
--all | Import env vars for all services using their configured env_file paths. Cannot combine with FILE or --services. |
Examples
JSON output
Errors
| Code | Meaning |
|---|---|
NOT_AUTHENTICATED | Run floo auth login first |
APP_NOT_FOUND | No app with that name or ID |
INVALID_FORMAT | Missing = in KEY=VALUE argument |