tutorial
getting-started
Getting Started with Sigma Starter
January 15, 2025 • Team
Welcome to Sigma Starter! This guide will help you get up and running with your new SaaS project.
Prerequisites
Before you begin, make sure you have the following installed:
- Node.js 18 or later
- npm or yarn package manager
- A code editor (we recommend VS Code)
Setting Up Your Project
First, clone the repository and install dependencies:
bash
git clone https://github.com/your-username/sigma-starter.git
cd sigma-starter
npm install
Environment Variables
Copy the example environment file and fill in your credentials:
bash
cp .env.example .env.local
You'll need to set up accounts for:
- Clerk - Authentication
- Supabase - Database
- Stripe - Payments
- Resend - Email
Running Locally
Start the development server:
bash
npm run dev
Open http://localhost:3000 to see your app.
Next Steps
Now that you have the project running, explore these areas:
- Customize the branding and colors
- Set up your database schema
- Configure Stripe products
- Deploy to production
Happy building!