> For the complete documentation index, see [llms.txt](https://seekspeed.gitbook.io/seekspeed-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://seekspeed.gitbook.io/seekspeed-docs/getting-started/installation.md).

# Installation

SeekSpeed Terminal is a Vite-based TanStack Start app. It runs locally with Bun, on any Node-capable host, or as a Cloudflare Worker for edge deployment.

## Prerequisites

* Bun ≥ 1.1 (or Node ≥ 20 if you prefer npm/pnpm)
* A Postgres database (for production); local dev runs against an embedded workspace store
* (Optional) A vLLM, TGI, llama.cpp, or SGLang endpoint for the Spec Lab
* (Optional) A DeepSpec orchestrator — see the [DeepSpec integration page](/seekspeed-docs/spec-lab/deepspec.md)

## Clone and install

```bash
git clone <repository-url>
cd seekspeed-terminal
bun install
bun dev
```

The dev server boots on `http://localhost:8080`. Open it, click **Open demo workspace**, and you'll land in `/app` with a seeded connector, two agents, a completed benchmark, and a sample Spec Lab job.

## Environment

The app reads three categories of env vars:

```bash
# Database / auth
SUPABASE_URL=...
SUPABASE_PUBLISHABLE_KEY=...

# Public client config
VITE_SUPABASE_URL=$SUPABASE_URL
VITE_SUPABASE_PUBLISHABLE_KEY=$SUPABASE_PUBLISHABLE_KEY

# Optional: Spec Lab orchestrator
DEEPSPEC_ORCHESTRATOR_URL=http://deepspec:8000
```

Connector API keys (OpenAI, Anthropic, Groq, etc.) are stored **per-workspace** inside the database and only ever read inside a server function. They are never serialized to the client bundle.

Continue to [Quickstart →](/seekspeed-docs/getting-started/quickstart.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://seekspeed.gitbook.io/seekspeed-docs/getting-started/installation.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
