Files
portfolio/infra-run/scripts/README.md
T
Mateusz Suski ca5a876d03
lint / shell-yaml-ansible (push) Failing after 21s
Improve infra-run portfolio credibility
2026-05-08 21:18:22 +00:00

719 B

infra-run/scripts

This directory groups executable tooling used across the infra-run project. It separates shell-first operational scripts from future Python-based utilities while keeping both under one automation entry point.

Diagram

flowchart TD
  A["scripts"] --> B["bash"]
  A --> C["python"]
  B --> D["Operational toolkits"]
  C --> E["Future helper utilities"]

Scope

  • bash - current implementation area with operations toolkits.
  • python - reserved space for future supporting utilities.

Notes

  • The repository currently emphasizes Bash because it maps directly to day-to-day Linux operations.
  • The structure leaves room for higher-level helpers without mixing concerns.