- Check discord messages
- Check sprint taskboard
- Check new commits from repos
-
Tag a task
-
Look for correct repo
-
Coding
- Before you start:
- check repo + branch
git checkout dev git pull
- code
- When you have finished:
- run lint
- run tests
- Before you start:
-
Update documentation?
- check repo + branch
- write
- review
-
Git
- use git add -p
- commit single logical change
- use proper commit messages
-
Task done
- push dev branch
- tag task done
- new tasks in mind?
-
Story done
- push dev branch
- Mark story "Done in Sprint" in product backlog
-
End working
- push dev branch
- mark working hours
- Go correct repo folder
git checkout <branch> git pull
- Work
git add -p git commit
- Ready to share to team?
git push
- Ready to staging?
git checkoout main git pull git merge <branch> git push
Branching, commits, etc. Git Style Guide
Markdown guide Basic writing and formatting syntax
Discord bot file structure.
Testing with jest jestjs.io docs
JavaScript for Programmers Course