Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ fizzy <resource> <action> [options]
| Option | Environment Variable | Description |
|--------|---------------------|-------------|
| `--token` | `FIZZY_TOKEN` | API access token |
| `--account` | `FIZZY_ACCOUNT` | Account ID |
| `--account` | `FIZZY_ACCOUNT` | Account slug (from `fizzy identity show`) |
| `--format` | | Output format: `json` (default), `text` |
| `--quiet` | | Suppress non-essential output |
| `--verbose` | | Show request/response details |
Expand Down
2 changes: 1 addition & 1 deletion lib/fizzy/cli.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ def self.exit_on_failure?
end

class_option :token, type: :string, desc: "API access token (or FIZZY_TOKEN env var)"
class_option :account, type: :string, desc: "Account ID (or FIZZY_ACCOUNT env var)"
class_option :account, type: :string, desc: "Account slug (or FIZZY_ACCOUNT env var)"
class_option :api_url, type: :string, desc: "API base URL (default: https://app.fizzy.do)"
class_option :format, type: :string, default: "json", desc: "Output format: json, text"
class_option :quiet, type: :boolean, default: false, desc: "Suppress non-essential output"
Expand Down
Loading