This guide provides instructions for setting up and running the project on your local machine
Make sure you have the following prerequisites installed on your system:
- npm
-
Clone the repository:
git clone https://github.com/SudiptaPaul-31/Snipu.git cd snipu -
Install dependencies:
npm install
-
Create and switch into you own branch:
git branch <your-branch> git checkout <your-branch>
To run the entire project, including both smart contracts and the frontend:
- Build commands:
npm run dev
The frontend should now be running at http://localhost:3000
- Follow our contributor's guide given here.
- Make sure to follow the respective commands for working on either the smart contracts or the frontend.
- Ensure the code is properly building, passing tests and formatted using
npm run checkat the root directory before making a pull request.