Getting Started

Get up and running with MoveFast in under 5 minutes

Choose Your Stack

Select your preferred database, payment provider, and email service. We'll generate a customized clone command with the exact configuration you need.

$ git clone -b supabase-resend-stripe --single-branch https://github.com/movefa-st/code.git

Click to copy the command

Install Dependencies

Once you've cloned the repository, install the dependencies:

bash
npm install

Configure Environment

Copy the example environment file and add your API keys:

bash
cp .env.example .env.local

Open .env.local and fill in your credentials for the services you selected above. Each provider section is clearly labeled in the file.

Set Up Database

If you're using Supabase, push the schema and generate the Prisma client:

bash
npx prisma db push --schema=./prisma/supabase/schema.prisma
npx prisma generate --schema=./prisma/supabase/schema.prisma

Run the App

Start the development server:

bash
npm run dev

Your app is now running at http://localhost:3000