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.gitClick to copy the command
Install Dependencies
Once you've cloned the repository, install the dependencies:
bash
npm installConfigure Environment
Copy the example environment file and add your API keys:
bash
cp .env.example .env.localOpen .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.prismaRun the App
Start the development server:
bash
npm run devYour app is now running at http://localhost:3000

