Need a custom feature? We can help!
Database Setup
Overview
StartupFast comes with Supabase as its database solution with a predefined schema.sql
to help you spin up your project faster.
Setup
- Go to Supabase and create a free account
- Create a new project in your Supabase dashboard
- Note your project's URL and anon key and paste them in your
.env.local
1# Supabase database connection keys (get these from your Supabase project settings) 2NEXT_PUBLIC_SUPABASE_URL= 3NEXT_PUBLIC_SUPABASE_ANON_KEY=
- Finally, go to the root of your project, copy the content of
schema.sql
, paste it in the Supabase SQL editor of your database and hit the run button. You can find it in the left menu after selecting your newly created database.
NOTE: The User table is the only mandatory table, as it will take care of saving users and premium accounts
NOTE: To make the User table properly work with the application, you will need to also setup Authentication