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-repoInstall Dependencies
Using npm:
npm installUsing yarn:
yarn installUsing pnpm:
pnpm installEnvironment 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-keyNever commit your .env.local file to version control. Add it to your .gitignore.
Run Development Server
npm run devOpen http://localhost:3000 in your browser.
Next Steps
Now that you have the project running, learn about Configuration.