LoopCart is a Python application that delivers personalised welcome messages to users.
This lab covers: cloning a repo, creating a feature branch, writing and testing code, committing with meaningful messages, pushing and opening a Pull Request, applying code review feedback, merging to main, and triggering a CI/CD pipeline.
- Git installed and configured
- Python 3 installed
- Terminal access (Windows users: use Git Bash)
Clone the repository: git clone loopcart Enter the folder: cd loopcart Run the app: python3 app.py
- Create a feature branch: git checkout -b feat/your-feature
- Commit your changes: git commit -m feat: describe your change
- Push the branch: git push -u origin feat/your-feature
- Open a Pull Request and request a review
- Apply feedback then merge to main
MIT