Getting Started
Welcome to our project! This guide will help you set up and run the project on your local machine.
Prerequisites
- Node.js (version 14 or higher)
- npm or yarn
Installation
-
Clone the repository:
git clone https://github.com/your-username/your-project.git -
Navigate to the project directory:
cd your-project -
Install dependencies:
npm install # or yarn install
Running the Project
To start the development server:
npm run dev
# or
yarn devOpen http://localhost:3000 in your browser to view the project.
Building for Production
To create a production build:
npm run build
# or
yarn buildYou can then start the production server with:
npm start
# or
yarn startCongratulations! You've successfully set up and run the project.