Documentation Index
Fetch the complete documentation index at: https://docs.runaether.dev/llms.txt
Use this file to discover all available pages before exploring further.
aether env
Manage environment variables for the current project. Environment variables are per-project and encrypted at rest. They are injected into workspaces when they start.Usage
Subcommands
| Subcommand | Description |
|---|---|
list | List all environment variables |
get <key> | Get the value of a variable |
set <key> | Set an environment variable |
delete <key> | Delete an environment variable |
import <file> | Import variables from a .env file |
aether env list
List all environment variables for the current project. Values are masked by default.aether env get
Get the value of a specific environment variable.aether env set
Set an environment variable. Creates the variable if it does not exist, or updates it if it does.| Flag | Description |
|---|---|
--value | The value to set (required) |
Running workspaces need to be restarted to pick up environment variable changes.
aether env delete
Delete an environment variable.| Flag | Description |
|---|---|
--force | Skip confirmation prompt |
aether env import
Import environment variables from a.env file. Existing variables with the same key are overwritten.
.env conventions: