Skip to main content

KDCube Apps bootstrap CLI

Project description

KDCube CLI

KDCube CLI

Bootstrap installer for the KDCube platform stack. This package clones the repository (if needed) and launches the guided setup wizard.


Prerequisites

macOS

  • Python 3.9+ (Homebrew recommended)
  • Git (Xcode Command Line Tools or Homebrew)
  • Docker Desktop (includes Docker Compose)

Windows

  • Python 3.9+
  • Git for Windows
  • Docker Desktop (enable WSL2 backend)

Linux

  • Python 3.9+
  • Git
  • Docker Engine + Docker Compose plugin

Install

pipx install kdcube-cli

Alternative (pip):

python -m pip install --user kdcube-cli

Run

kdcube-setup

What it installs (default)

  • Repo clone: ~/.kdcube/kdcube-ai-app
  • Workdir: ~/.kdcube/kdcube-runtime
  • Docker images: pulled (release) or built (upstream)

Quick start (new users)

  1. Run kdcube-setup
  2. Choose release-latest (pull prebuilt images)
  3. Answer yes to “Run docker compose now?”

That will bring up the stack with no local build required.

Use a local checkout (dev)

kdcube-setup --path /Users/you/src/kdcube/kdcube-ai-app

At “Install source”:

  • upstream → build images from your local repo
  • skip → keep the repo as-is (no pull) and use it for build/run

If you choose upstream, answer yes to “Build core platform images?” to rebuild from your local changes.

Re-run prompts (edit existing values):

kdcube-setup --reset

Clean local Docker images/cache:

kdcube-setup --clean

Tip: if kdcube-setup is not on your PATH, run:

python -m kdcube_cli.cli

What the wizard does (today)

When you run kdcube-setup, the wizard performs the steps below:

  1. Creates a workdir with config/, data/, and logs/ folders.
  2. Writes compose env files into config/ (only if missing; it won’t overwrite existing files).
  3. Copies nginx configs into config/ for runtime overrides:
    • nginx_ui.conf
    • nginx_proxy.conf
  4. Generates frontend runtime config.
  5. Creates local data folders for Postgres/Redis/exec workspace/bundle storage.
  6. Optionally builds images and starts docker compose up -d.

Secrets (LLM keys)

The wizard does not write OpenAI/Anthropic/Brave keys to .env files. If you provide them during setup, they are injected at runtime into the kdcube-secrets sidecar (in‑memory only). If you restart the stack, you’ll be prompted again to re‑inject keys.

Order (automatic):

  1. Start kdcube-secrets
  2. Wait for it to be ready
  3. Inject keys
  4. Start/restart ingress + proc (they fetch secrets)

Manual re‑inject:

kdcube-setup --secrets-prompt --workdir ~/.kdcube/kdcube-runtime

Or pass explicit values:

kdcube-setup --secrets-set OPENAI_API_KEY=... --secrets-set ANTHROPIC_API_KEY=...

You can also override the git HTTPS token this way:

kdcube-setup --secrets-set GIT_HTTP_TOKEN=...

Note: re‑inject will restart kdcube-secrets, chat-ingress, and chat-proc to refresh per‑run tokens (and the web proxy to keep upstreams in sync). Per‑run tokens are generated by the CLI and are not stored in config/.

If you set LLM keys in env files (managed infra / custom setups), those env values still work and take precedence. The secrets sidecar is only used when env keys are missing.

Git HTTPS token (private bundles)

If you choose https-token auth for git bundles, the token is treated as a secret and is not stored in .env.proc. It is injected at runtime (same flow as LLM keys). You will be prompted again on the next run unless you pass it via --secrets-set GIT_HTTP_TOKEN=....

More details: https://github.com/kdcube/kdcube-ai-app/blob/main/app/ai-app/docs/ops/local/local-setup-README.md

Current scope: the wizard is optimized for docker‑compose (all‑in‑one). It creates a workdir (default: ~/.kdcube/kdcube-runtime) and lets you:

  • generate config/data/log folders
  • choose release (pull from DockerHub) or upstream (build locally)
  • start docker compose (optional)

Install source options:

  • release-latest: pull prebuilt images for the latest release
  • release-installed: pull prebuilt images for the last installed release (if known)
  • release-tag: pull prebuilt images for a specific version (platform.ref)
  • upstream: build images from the current git checkout
  • skip: keep current repo/workdir without pulling or changing versions

Tip: you can select the install source using the ↑/↓ arrow keys and Enter.

Example workdir layout:

~/.kdcube/kdcube-runtime
├─ config/
│  ├─ .env
│  ├─ .env.ingress
│  ├─ .env.proc
│  ├─ .env.metrics
│  ├─ .env.postgres.setup
│  ├─ .env.proxylogin
│  ├─ frontend.config.hardcoded.json
│  ├─ nginx_ui.conf
│  └─ nginx_proxy.conf
├─ data/
│  ├─ postgres/
│  ├─ redis/
│  ├─ exec-workspace/
│  └─ bundle-storage/
└─ logs/
   ├─ chat-ingress/
   └─ chat-proc/

Where data is stored

  • Config: workdir/config/ (env files, nginx config, UI config)
  • Data: workdir/data/ (postgres/redis storage, bundle storage, exec workspace)
  • Logs: workdir/logs/

Infra credentials (Postgres/Redis) are stored in config/.env* for local compose. LLM keys are not stored in files; they live only in the secrets sidecar.

Compose usage (recommended)

  1. Run the wizard and choose a workdir (example: /srv/kdcube-local).
  2. It will generate:
    • /srv/kdcube-local/config/.env
    • /srv/kdcube-local/config/.env.ingress
    • /srv/kdcube-local/config/.env.proc
    • /srv/kdcube-local/config/.env.metrics
    • /srv/kdcube-local/config/.env.postgres.setup
    • /srv/kdcube-local/config/.env.proxylogin
    • /srv/kdcube-local/config/frontend.config.hardcoded.json
    • /srv/kdcube-local/config/nginx_ui.conf
    • /srv/kdcube-local/config/nginx_proxy.conf
  3. Start compose from deployment/docker/all_in_one_kdcube:
docker compose --env-file /srv/kdcube-local/config/.env up -d --build

Open the UI:

  • http://localhost:${KDCUBE_UI_PORT}/chatbot/chat (via proxy, omit :${KDCUBE_UI_PORT} if it is 80)

Notes

  • The wizard does not overwrite existing config files in your workdir. It only fills placeholders in newly created files.
  • Use kdcube-setup --reset to re-enter values without deleting files.
  • Config upgrades/migrations will be added later when configs are versioned.

Tip: you can edit workdir/config/nginx_ui.conf and workdir/config/nginx_proxy.conf without rebuilding images (they are mounted into the containers at runtime).

UI config source of truth

The web UI loads its runtime config from /config.json inside the web-ui container. Docker compose mounts the host file defined by PATH_TO_FRONTEND_CONFIG_JSON to:

/usr/share/nginx/html/config.json

Clean / reset

Clean local Docker cache and unused KDCube images:

kdcube-setup --clean

Reset prompts without deleting files:

kdcube-setup --reset

Full reset (delete workdir):

rm -rf ~/.kdcube/kdcube-runtime

If the UI is calling the wrong tenant/project, check:

  • PATH_TO_FRONTEND_CONFIG_JSON in the generated .env
  • curl http://localhost:<ui_port>/config.json

See the full local setup flow on GitHub: https://github.com/kdcube/kdcube-ai-app/blob/main/app/ai-app/docs/ops/local/local-setup-README.md

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kdcube_cli-2026.3.8.440.tar.gz (32.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

kdcube_cli-2026.3.8.440-py3-none-any.whl (30.9 kB view details)

Uploaded Python 3

File details

Details for the file kdcube_cli-2026.3.8.440.tar.gz.

File metadata

  • Download URL: kdcube_cli-2026.3.8.440.tar.gz
  • Upload date:
  • Size: 32.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for kdcube_cli-2026.3.8.440.tar.gz
Algorithm Hash digest
SHA256 3b83e4d02c8aeb7286e72baf3f199c337b96fb7226966d7ad1e783a6d2327b47
MD5 e0b77d3139b4932c6da596951fa06324
BLAKE2b-256 34985b83fb7ecdcab94df980a18a358ef12c4445b440648fc4afba4f9790e588

See more details on using hashes here.

Provenance

The following attestation bundles were made for kdcube_cli-2026.3.8.440.tar.gz:

Publisher: release-kdcube-platform.yml on kdcube/kdcube-ai-app

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file kdcube_cli-2026.3.8.440-py3-none-any.whl.

File metadata

File hashes

Hashes for kdcube_cli-2026.3.8.440-py3-none-any.whl
Algorithm Hash digest
SHA256 ffdb883ba73e348014504970368fe4fa62dab904b054bae75a70c2424dfb1522
MD5 28b813b59d0f30cd488e2fcf41e4277b
BLAKE2b-256 f175fa6d307bafc3672c7afefaf79d86899dbbac20be60daedf1dbd0810e52ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for kdcube_cli-2026.3.8.440-py3-none-any.whl:

Publisher: release-kdcube-platform.yml on kdcube/kdcube-ai-app

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page