Skip to main content

Installation

Learn how to install and set up the project.

Installation

Follow these steps to get the project running on your machine.

Prerequisites

Make sure you have the following installed:

  • Node.js 18 or later
  • npm, yarn, or pnpm
  • Git

Clone the Repository

git clone https://github.com/your-username/your-repo.git
cd your-repo

Install Dependencies

Using npm:

npm install

Using yarn:

yarn install

Using pnpm:

pnpm install

Environment Variables

Create a .env.local file in the root directory:

NEXT_PUBLIC_SUPABASE_URL=your-supabase-url
NEXT_PUBLIC_SUPABASE_ANON_KEY=your-supabase-anon-key

Never commit your .env.local file to version control. Add it to your .gitignore.

Run Development Server

npm run dev

Open http://localhost:3000 in your browser.

Next Steps

Now that you have the project running, learn about Configuration.