Skip to content

Project 1 - Setup Guide

Complete guide to setting up Project 1.

  • Node.js 18+
  • Git
  • Text editor
  1. Clone the repository

    Terminal window
    git clone https://github.com/example/project-1.git
    cd project-1
  2. Install dependencies

    Terminal window
    npm install
  3. Start development server

    Terminal window
    npm run dev
  4. Open in browser Visit http://localhost:3000

Edit config.js to customize your setup:

export default {
name: "Project 1",
version: "1.0.0",
port: 3000
}

Ready to deploy? Check out the Deployment Guide!