Files
portfolio/infra-run/scripts/README.md
T

24 lines
759 B
Markdown
Raw Normal View History

# 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
```mermaid
flowchart TD
2026-05-06 06:46:27 +00:00
A["scripts"] --> B["bash"] --> C["python"]
click A href "./" "scripts"
click B href "./bash/" "bash"
click C href "./python/" "python"
```
## Scope
- `bash` - current implementation area with production-style 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.