https://github.com/sharp119/darpan_adgitm_store
Darpan by Enactus society of ADGITM
https://github.com/sharp119/darpan_adgitm_store
Last synced: 2 months ago
JSON representation
Darpan by Enactus society of ADGITM
- Host: GitHub
- URL: https://github.com/sharp119/darpan_adgitm_store
- Owner: sharp119
- Created: 2023-10-21T10:28:16.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-21T11:50:10.000Z (over 1 year ago)
- Last Synced: 2025-02-05T03:51:11.246Z (4 months ago)
- Language: JavaScript
- Size: 464 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Darpan by Enactus Society of ADGITM
This project is managed by the Enactus Society of ADGITM, developed under the Darpan initiative.
## Getting Started
These instructions will help you set up the project locally for development and testing purposes.
### Prerequisites
Ensure you have the following software installed on your machine:
- Node.js
- Yarn### Installation
1. Clone the repository to your local machine.
2. Navigate to the project directory.
3. Delete the `node_modules` folder and the `package-lock.json` file if they exist to ensure a fresh package installation:
```bash
rm -rf node_modules package-lock.json
```
4. If you encounter errors after running `yarn` and `yarn start`, you may need to add the resolutions field to your `package.json` file. Open `package.json` and add the following code:
```json
"resolutions": {
"babel-loader": "8.1.0"
}
```
5. Use Yarn for package management. To download the project dependencies, run:
```bash
yarn
```
6. To start the project, run:
```bash
yarn start
```