Use however you like
Follow these instructions to turn the JSON files into a normalized Postgres DB! You don't need to keep using Supabase afterwards if you don't want since it creates a regular Postgres DB you can connect to.
To run migrations for this project, use the Supabase CLI:
- supabase.com account/project setup
- Node/Npm installed (we recommend using Node Version Manager (NVM))
npx supabase loginFind the project ID by visiting your supabase.com dashboard for the project and looking at the ID in the URL
npx supabase link --project-ref <project-id>This creates all tables AND seeds them with relational data!
npx supabase migration up --linkedNote for maintainers: If you've updated JSON data files, regenerate migrations first with
node scripts/generate-seed-migrations.js
If you prefer to self-host supabase, follow the guide: Supabase Local DB