This is a Next.js project bootstrapped with create-next-app
.
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
Open http://localhost:3000 with your browser to see the result.
- Most importantly, DO NOT PUSH TO MASTER/MAIN/DEV
- Always create a new branch for any new feature you're working on. Branch name format should be
[task-type]/[ticket-title]
e.gfeature/home-section
. - Commit your code for every task/sub-task worked on. Commit format should be
[task-type]: [ticket-title]
e.gfeature: build home section screen
. (commit message can be descriptive if feature is large). - Push branch online then make a PR, request review from your team members and DO NOT MERGE PR (follow PR template when making one)
- PR gets merged into
dev
by team lead after team and code review has passed.
NB: Ticket numbers can be found in the project management tool being used e.g Trello, JIRA, Github Boards
NB: Task types can be:
- feat/feature
- chore
- refactor
- bug
- fix/hotfix
See link for more conventional commit style.