Adventure Labs Logo
Scout Docs

Development

Instructions for setting up your development environment for db development

  1. Install a container runtime compatible with Docker APIs.
  2. Download the supabase cli from here.
  3. Associate Your Hosted Database
supabase init
supabase login
# select your database instance
supabase link

Dump

supabase db dump -f database/dump.sql

Get Types

supabase gen types typescript --project-id "<your project id>" --schema public > core/types/supabase.ts

On this page