flndrn c1786f7b5e chore(studio): groundwork for studio deploy (dockerignore fix + continuation brief) 3 hete
..
.github c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 hónapja
__mocks__ c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 hónapja
app c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 hónapja
components 54c3812553 fix: Studio typecheck passes (0 errors) 2 hónapja
evals c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 hónapja
fonts c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 hónapja
hooks 54c3812553 fix: Studio typecheck passes (0 errors) 2 hónapja
lib 54c3812553 fix: Studio typecheck passes (0 errors) 2 hónapja
pages 54c3812553 fix: Studio typecheck passes (0 errors) 2 hónapja
public 4dd8f0b4ef fix(deploy): regenerate pnpm-lock.yaml + land backend-fork carry-overs 3 hónapja
scripts c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 hónapja
state 54c3812553 fix: Studio typecheck passes (0 errors) 2 hónapja
styles 73d8aa9657 branding: finish Dolt→Briven rename, clean up studio/auth/CLI layers 2 hónapja
tests c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 hónapja
types c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 hónapja
.env e0d99cb3a0 feat(studio): wire apps/studio for control-plane deploy 3 hónapja
.gitignore c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 hónapja
Dockerfile 4b8ee39308 build: cap Next.js build heap to prevent host OOM on shared VPS 2 hónapja
Dockerfile.dockerignore c1786f7b5e chore(studio): groundwork for studio deploy (dockerignore fix + continuation brief) 3 hete
README.md c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 hónapja
csp.ts c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 hónapja
docker-entrypoint.sh c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 hónapja
eslint.config.cjs c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 hónapja
instrumentation-client.test.ts c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 hónapja
instrumentation-client.ts c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 hónapja
instrumentation.ts c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 hónapja
next.config.ts c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 hónapja
package.json c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 hónapja
postcss.config.cjs c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 hónapja
proxy.ts c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 hónapja
sentry.edge.config.ts c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 hónapja
sentry.server.config.ts c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 hónapja
tsconfig.json 717bd2b68b feat: platform proxy + Studio data layer for end-to-end table editor 2 hónapja
turbo.jsonc c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 hónapja
vitest.config.ts c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 hónapja

README.md

Briven Studio

A dashboard for managing your self-hosted Briven 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 Briven 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]
Briven 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 briven/platform repo and follow instructions for setting up mise
mise studio  # Run from briven/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=
BRIVEN_ANON_KEY=
BRIVEN_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=