🔵 Part 3: Daily Project Workflow¶
This section provides step-by-step instructions for working on an existing Python project. These steps are repeatable and should be followed whenever you make changes, update dependencies, or work on project features.
IMPORTANT: Complete all of Workflow 1 and Workflow 2, before continuing.
While Working on the Project¶
Follow these steps when working on a professional Python project.
- Git pull
- Update and run checks/tests
- Build and serve documentation
- Run Python and/or notebooks. See Run Python or Run Notebooks
- Git add-commit-push
- Modify and debug
Important¶
- Always pull the latest changes before starting to avoid merge conflicts.
- Test your project before each
git add-commit-push
. - Make frequent commits when enhancing a project.