Skip to content

Arc Launchpad v0.1.0 — first public release

Choose a tag to compare

@github-actions github-actions released this 26 Jun 19:17

Arc Launchpad is a self-hosted web UI for Arc, the high-performance columnar analytical database. Point it at one or more existing Arc instances (by endpoint URL + admin token) and get a browser-based interface for querying and managing them — no provisioning, no cloud dependency, your data stays in your own Arc instances.

This is the first public release.

Features

  • SQL console with schema explorer, query history, and multi-tab editing
  • Logs viewer with pattern detection and trace extraction
  • Token management and retention policies
  • Alerts and continuous queries
  • Organizations & teams — invite users, assign roles
  • Local auth — email/password with optional MFA (TOTP) and passkeys (WebAuthn)

The first account you create becomes the admin; after that, signup is invite-only.

Install

Docker

docker run -p 3000:3000 \
  -e LAUNCHPAD_JWT_SECRET=$(openssl rand -hex 32) \
  -v launchpad-data:/app/data \
  ghcr.io/basekick-labs/launchpad:0.1.0

Docker Compose

curl -O https://raw.githubusercontent.com/basekick-labs/launchpad/main/docker-compose.yml
LAUNCHPAD_JWT_SECRET=$(openssl rand -hex 32) docker compose up -d

Helm

helm install launchpad oci://ghcr.io/basekick-labs/charts/launchpad --version 0.1.0 \
  --set jwtSecret=$(openssl rand -hex 32) \
  --set baseUrl=https://launchpad.example.com

Then open the app, create your admin account, and add a connection to your Arc instance.

Artifacts

  • Image: ghcr.io/basekick-labs/launchpad:0.1.0 (multi-arch: amd64, arm64; cosign-signed)
  • Helm chart: oci://ghcr.io/basekick-labs/charts/launchpad:0.1.0 (also attached below as launchpad-0.1.0.tgz)

Licensed under Apache-2.0.