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 push
directly to themain
branch. - Write meaningful commit messages.
- Create a branch from the latest
main
branch with the meaningful name. - After you are done with development, push your code to
that
branch and raise aPR
to themain
branch.
git pull
git checkout <branch-name>
git add .
git commit -m "<your-commit-message-here>"
git push origin <working-branch>