ruvector/studio
rUv 814f595995 feat(studio): Add complete RuVector Studio application
Major additions:
- Complete Next.js studio application with 1600+ components
- Docker support (Dockerfile.combined, docker-compose.yml)
- GCP deployment documentation and benchmarks
- SQL benchmark scripts for performance testing
- Sentry integration for monitoring
- Comprehensive test suite and mocks

Studio features:
- Dashboard and admin interfaces
- Data visualization components
- Authentication and user management
- API integration with RuVector backend
- Static data and public assets

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-06 23:04:48 +00:00
..
.github feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
__mocks__/hooks feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
components feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
data feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
fonts feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
hooks feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
lib feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
pages feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
public feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
scripts feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
state feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
static-data/integrations feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
styles feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
tests feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
types feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
.env feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
.gitignore feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
csp.js feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
docker-entrypoint.sh feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
Dockerfile feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
eslint.config.cjs feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
instrumentation-client.ts feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
instrumentation.ts feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
next.config.js feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
package.json feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
postcss.config.js feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
proxy.ts feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
README.md feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
sentry.edge.config.ts feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
sentry.server.config.ts feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
tailwind.config.js feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
tsconfig.json feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
vitest.config.ts feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00

Supabase Studio

A dashboard for managing your self-hosted Supabase project, and used on our hosted platform. Built with:

What's included

Studio is designed to work with existing deployments - either the local hosted, docker setup, or our CLI. It is not intended for managing the deployment and administration of projects - that's out of scope.

As such, the features exposed on Studio for existing deployments are limited to those which manage your database:

  • Table & SQL editors
    • Saved queries are unavailable
  • Database management
    • Policies, roles, extensions, replication
  • API documentation

Managing Project Settings

Project settings are managed outside of the Dashboard. If you use docker compose, you should manage the settings in your docker-compose file. If you're deploying Supabase to your own cloud, you should store your secrets and env vars in a vault or secrets manager.

How to contribute?

  • Branch from master and name your branches with the following structure
    • {type}/{branch_name}
      • Type: chore | fix | feature
      • The branch name is arbitrary — just make sure it summarizes the work.
  • When you send a PR to master, it will automatically tag members of the frontend team for review.
  • Review the contributing checklists to help test your feature before sending a PR.
  • The Dashboard is under active development. You should run git pull frequently to make sure you're up to date.

Developer Quickstart

Note

Supabase internal use: To develop on Studio locally with the backend services, see the instructions in the internal infrastructure repo.

# You'll need to be on Node v20
# in /studio

## For external contributors
pnpm install # install dependencies
pnpm run dev # start dev server

## For internal contributors
## First clone the private supabase/platform repo and follow instructions for setting up mise
mise studio  # Run from supabase/platform alongside `mise infra`

## For all
pnpm run test # run tests
pnpm run test -- --watch # run tests in watch mode

Running within a self-hosted environment

Follow the self-hosting guide to get started.

cd ..
cd docker
docker compose -f docker-compose.yml -f ./dev/docker-compose.dev.yml up

Once you've got that set up, update .env in the studio folder with the corresponding values.

POSTGRES_PASSWORD=
SUPABASE_ANON_KEY=
SUPABASE_SERVICE_KEY=

Then run the following commands to install dependencies and start the dashboard.

npm install
npm run dev

If you would like to configure different defaults for "Default Organization" and "Default Project", you will need to update the .env in the studio folder with the corresponding values.

DEFAULT_ORGANIZATION_NAME=
DEFAULT_PROJECT_NAME=