Next.js Fullstack Training
Chapter 3
Your Daily Workflow
3.1 Morning Routine (first 15 min)
- git checkout main && git pull
- git checkout your-branch && git rebase main
- Check GitHub Projects board — are tasks still prioritised correctly?
- Check Google Chat — any PRs waiting on your review?
- pnpm dev
3.2 During the Day
- Commit every time you reach a working state, not just end of day.
- Use Conventional Commits format (see Chapter 4).
- Run pnpm check && pnpm tsc --noEmit before pushing.
- Stuck for more than 30 minutes? Post in Help & Questions. Include what you tried.
- Update your GitHub Issue — move the card, leave a progress comment.
3.3 Standup Format (60 seconds max)
| Question | Example Answer |
|---|---|
| Yesterday | Finished the task creation Server Action and Zod validation. PR open for review. |
| Today | Will start the task editing modal and useOptimistic() integration. |
| Blockers | "Unclear how revalidatePath works with nested routes — can anyone pair for 15 min?" |