Supabase is used to store contributor profiles and task information.
.env
file.SUPABASE_URL=XXX
SUPABASE_KEY=XXX
bun supabase start
bun supabase migration
bun supabase db push
bun supabase projects
bun supabase gen types
bun supabase link -p PASSWORD --project-ref PROJECT_REF
For more information about arguments, please go through here
supabase migration new MIGRATION_NAME
: It will create a migration file in supabase/migrations folder.supabase migration repair <MIGRATION_NAME> --status reverted
: Revert a given migration file.supabase db push
: Update database schema on supabase platformsupabase gen types typescript > src/adapters/supabase/types/database.ts --linked
: Generate typescript types from the supabase project linked