Skip to main content

Documentation Index

Fetch the complete documentation index at: https://greenteagentic.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Prerequisites

  • Bun ≥ 1.1
  • A the platform project (already provisioned for the hosted app)

Clone & install

git clone <your-repo>
cd green-teagentic
bun install

Environment variables

.env is managed by the platform. For local development, create one with:
VITE_SUPABASE_URL=...
VITE_SUPABASE_PUBLISHABLE_KEY=...
VITE_SUPABASE_PROJECT_ID=...
SUPABASE_URL=...
SUPABASE_PUBLISHABLE_KEY=...
SUPABASE_SERVICE_ROLE_KEY=...
TEAGENTIC_AI_KEY=...
See Environment variables for the full list.

Run

bun run dev
The dev server starts on http://localhost:5173. The TanStack Router Vite plugin regenerates src/routeTree.gen.ts automatically — don’t edit it by hand.

Apply database migrations

Migrations live in supabase/migrations/. In the hosted environment, they apply automatically. Locally, point supabase CLI at your project and run:
supabase db push