git clone https://github.com/NKCxEIC-official/edunation-fe.git
cd edunation-fe
npm install
npm start
Voila! EduNation-fe is running in http://localhost:3000!
- Do
not commit or pushdirectly to themainbranch. - Write meaningful commit messages.
- Create a branch from the latest
mainbranch with the meaningful name. - After you are done with development, push your code to
thatbranch and raise aPRto themainbranch.
git pull
git checkout <branch-name>
git add .
git commit -m "<your-commit-message-here>"
git push origin <working-branch>