GFG SRMIST website
- do
npm ioryarnin the root directory. - then go to client folder by
cd clientand donpm ioryarn. - get back into root directory by
cd ... - for starting backend do
npm run serveroryarn server. - for starting frontend do
npm run clientoryarn client.
- Branch name conventions
- INITIALS/WHERE/WHAT
- examples
- if name is Harsh Shaw
HS/client/homepage
- if name is Harsh Shaw
- Kindly try to follow the following conventions while making commits.
- All the commit messages should be in present tense.
- examples
feat(client/login): add login buttonfix(api): fix team model
Must be one of the following:
- feat: A new feature.
- fix: A bug fix.
- docs: Documentation only changes.
- style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc).
- refactor: A code change that neither fixes a bug nor adds a feature.
- perf: A code change that improves performance.
- test: Adding missing tests.
- chore: Changes to the build process or auxiliary tools and libraries such as documentation generation.