How to run - UoaWDCC/Stick-Insect GitHub Wiki
Install dependencies for both frontend folder and backend folder
npm install
Start development server
npm start
Start client
npm start
Open http://localhost:3000 with your browser to see the result.
Please always create a new feature branch from main branch
### Switch to main branch
git checkout main
### Pull latest changes
git pull origin main
### Start a new feature branch
git checkout -b feature/new-features
### Work on the new changes
...
### Run lint check
npm run lint
### Commit and push the changes to remote repository
git add .
git commit -am 'Added new changes'
git push origin feature/new-features