Before you begin, ensure you have the following installed on your system:
- Node.js: This project requires Node.js to run. You can download it from nodejs.org. Installing Node.js will also install
npm(Node Package Manager).
You can check if you have them installed by running these commands in your terminal: node -v npm -v
Follow these steps to set up your development environment:
-
Clone the repository
git clone https://github.com/alansaji360/CAIREgen.git -
Navigate to the project directory
cd CAIREgen -
Install dependencies This command reads the
package.jsonfile and installs all the necessary project dependencies into thenode_modulesfolder.npm install
Once the dependencies are installed, you can run the application using the following scripts.
To run the app in a development environment with live reloading, use:
npm run dev
This will start a local development server. Open your web browser and navigate to http://localhost:3000 (or the URL specified in your terminal) to see the application.