Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 1.13 KB

File metadata and controls

47 lines (31 loc) · 1.13 KB

Python + Bash Automation Portfolio

Python Shell Platform CI

A collection of small, focused automation projects built with Python and Bash. Each project is designed to be reproducible, easy to run, and clearly documented.

Environment

  • Windows 11
  • Python (virtual environments)
  • Git Bash
  • Visual Studio Code

Setup

From the repository root:

python -m venv .venv
source .venv/Scripts/activate
pip install -r requirements.txt

Repository Structure

projects/ - Individual automation projects scripts/ - Shared shell helpers docs/ - Notes and design decisions logs/ - Curated command history

Projects

  • 01_api_health_check API health check and response capture automation

Notes

  • The virtual environment (.venv/) is intentionally not committed
  • Dependencies are tracked in requirements.txt
  • Development commands are recorded in logs/commands.md