This project is managed by the Enactus Society of ADGITM, developed under the Darpan initiative.
These instructions will help you set up the project locally for development and testing purposes.
Ensure you have the following software installed on your machine:
- Node.js
- Yarn
- Clone the repository to your local machine.
- Navigate to the project directory.
- Delete the
node_modulesfolder and thepackage-lock.jsonfile if they exist to ensure a fresh package installation:rm -rf node_modules package-lock.json
- If you encounter errors after running
yarnandyarn start, you may need to add the resolutions field to yourpackage.jsonfile. Openpackage.jsonand add the following code:"resolutions": { "babel-loader": "8.1.0" }
- Use Yarn for package management. To download the project dependencies, run:
yarn
- To start the project, run:
yarn start