Step 1: Download and Extract the Project

Step 2: Create a GitHub Repository

git init
git add .
git commit -m "Initial commit"
git branch -M main
git remote add origin <https://github.com/your-username/your-repo.git>
git push -u origin main

Step 3: Install Dependencies and Run Locally

Before deploying, test the application locally:

npm install
npm run dev

Step 4: Create a Vercel Account and Deploy

Step 5: Build for Production

If deploying manually to a server, build the project before deployment:

npm run build

Step 6: Configure Environment Variables