Prerequisites

Quick Setup

1

Create your own repository

  1. Go to the StartEase template
  2. Click Use this template button on the top right
  3. Set visibility to Private
  4. Click Create repository
2

Clone the repository

Clone the repository you just created in Step 1

git clone <your-repo>
3

Install dependencies

Open your terminal

cd your-repository-name

#Install pnpm if you haven't already
npm install -g pnpm

# Install dependencies
pnpm install
4

Generate the migrations

npm run db:generate
5

Start development

pnpm dev

Go to http://localhost:3000 - your website should be up and running!