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

  1. Go to Supabase and create a free account
  2. Create a new project in your Supabase dashboard
  3. 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=
  1. 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.
Supabase SQL Editor showing where to paste schema.sql

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