This guide explains how to set up and run the Task Tree project on your local machine.
Before starting, ensure you have the following installed:
- Node.js (v18 or higher) - Download Node.js
- Git - Download Git
- Code Editor (Optional, but recommended: VS Code) - Download VS Code
Open your terminal and run:
git clone https://github.com/mn1701/Task-Tree.gitChange into the project directory:
cd task-treeRun the following command to install all required packages:
npm installStart the development server by running:
npm run devThis will start the app on http://localhost:3000. Open this URL in your browser to view the site.
Here are some additional scripts you can use during development:
- Start Development Server:
npm run dev
- Lint the Code:
npm run lint
- Build for Production:
npm run build
- Start Production Server:
npm start