- Fork the repository. (See the button on top left)
- Clone the forked repository on your machine
- To run the Frontend run the following commands
npm install
followed by
npm run dev
Now this will start frontend code localhost:3000
-
To make contributions create your own branch with your name
-
Add all the changes by the using the command
gid add .
followed by
git commit -m "your commit message"
lastly,
git push -u origin "your branch name here"
To install dependencies while avoiding conflicts, run:
npm i --legacy-peer-deps
To resolve CORS issues, start the proxy server:
- Navigate to the proxy directory:
cd proxy
- Start the server:
node server.js
- The
--legacy-peer-deps
flag is used to bypass dependency conflicts - The proxy server must be running to handle CORS (Cross-Origin Resource Sharing) requests properly
- Make sure all dependencies are installed before starting the proxy server
If you encounter any problems, please ensure:
- Node.js is installed on your system
- You're in the correct directory when running commands
- All required dependencies are listed in package.json