Installation

Step-by-step installation guide for setting up the project locally.

System Requirements

Ensure you have the following installed:

ToolMinimum Version
Node.js18.x
npm9.x
Git2.x

Cloning the Repository

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

Installing Dependencies

npm install

Running the Development Server

npm run dev

The site will be available at http://localhost:4321.

Building for Production

npm run build

The built output will be in the dist/ directory.

Deploying to Cloudflare Pages

Connect your GitHub repository to Cloudflare Pages:

  1. Go to Cloudflare Pages
  2. Click Create a projectConnect to Git
  3. Select your repository
  4. Set build command: npm run build
  5. Set output directory: dist
  6. Click Save and Deploy

Cloudflare will automatically redeploy on every push to your main branch.