Skip to content

vk open

Terminal window
vk open <service>
CommandDescriptionURL
vk open dbDatabase viewerhttp://localhost:8081
vk open storageStorage (S3) browserhttp://localhost:9001
vk open queuesQueue & cache monitorhttp://localhost:5540
vk open cronsCron job statusTerminal output

Opens local dev tools for the infrastructure services declared in your project’s vk.config.ts. All tools run locally — no data leaves your machine.

Services are started automatically if they are not already running. You never need to manually start Docker containers.

Terminal window
# Open the database viewer
vk open db
# Open the storage browser
vk open storage
# Open the queue & cache monitor
vk open queues
# View cron job status (requires vk dev running)
vk open crons
# Cron status on custom port
vk open crons --port 8080

Opens a web-based database viewer connected to the current project’s database. Browse tables, run queries, and inspect data.

  • Automatically connects to the current project’s primary database
  • Running vk open db from a different project switches the viewer to that project’s database
  • Database names are project-prefixed (e.g. my_app_main)
  • No configuration needed — credentials are managed automatically
  • Use --all to show all project databases at once

Opens the storage console where you can browse, upload, and manage files in your project’s S3-compatible buckets.

  • Login credentials: minioadmin / minioadmin
  • Buckets are prefixed with your project name (e.g. my-app-uploads)

Opens a visual monitor for Redis, used by both queue and cache intents. Inspect keys, monitor queue lengths, and debug message flow.

  • Auto-connects to the local Redis instance
  • Works for both queue intents and cache intents

Displays cron job status directly in the terminal. Shows each job’s name, schedule interval, last run time, and next scheduled run.

Name Interval Last Run Next Run
───────────────────────── ──────────── ────────────────────── ──────────────────────
cleanup 5m 2025-01-15T10:30:00Z 2025-01-15T10:35:00Z
daily-report 24h 2025-01-15T00:00:00Z 2025-01-16T00:00:00Z

Note: Requires vk dev to be running since cron jobs are managed by the dev server.

  • Docker running (for db, storage, and queue viewers)
  • VentureKit project with vk.config.ts
  • Infrastructure intents matching the service you want to open
CommandOptionDescriptionDefault
vk open db-a, --allShow all project databasesCurrent project only
vk open crons-p, --port <port>Dev server port3000