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 @@ -175,7 +175,7 @@ kscli folders list -f yaml # config-friendly

| Env var | Default | Purpose |
|---|---|---|
| `KSCLI_BASE_URL` | `https://api-staging.knowledgestack.ai` | API endpoint |
| `KSCLI_BASE_URL` | `https://api.knowledgestack.ai` | API endpoint |
| `KSCLI_FORMAT` | `table` | Default output format |
| `KSCLI_VERIFY_SSL` | `true` | TLS verification |
| `KSCLI_CONFIG` | `~/.config/kscli/config.json` | Config file |
Expand Down
2 changes: 1 addition & 1 deletion src/kscli/commands/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
@click.option(
"--url",
default=None,
help="API base URL. Defaults to the staging instance.",
help="API base URL. Defaults to the production instance.",
)
@click.pass_context
def login(ctx: click.Context, api_key: str, url: str | None) -> None:
Expand Down
2 changes: 1 addition & 1 deletion src/kscli/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from typing import Any

_DEFAULT_CONFIG_PATH = Path.home() / ".config" / "kscli" / "config.json"
_DEFAULT_BASE_URL = "https://api-staging.knowledgestack.ai"
_DEFAULT_BASE_URL = "https://api.knowledgestack.ai"
_DEFAULT_FORMAT = "table"


Expand Down
Loading