Lightweight, modular dev automation for mono-repos—built for speed, consistency, and happier developers.
Sange is a modular, extensible automation toolkit powered by Makefiles and Bash.
It helps streamline repetitive development tasks like Git workflows, Docker commands, Laravel tooling, and more.
Sange—named after the nimble and resilient Elephant Shrew—is designed for teams that demand lightweight, dependable DevOps workflows. Whether you’re working with mono-repos, microservices, or full-stack systems, Sange scales with precision and power.
- ✅ Designed for mono-repos and multi-project environments
- ⚙️ Uses Make + Bash — no extra binaries or dependencies
- 🧩 Stack-based and extensible: Laravel, Docker, NPM, and more
- 💡 Built with modularity, readability, and reusability in mind
Each stack has its own documentation:
- 🔗 Git Commands
- 🐳 Docker Commands
- 📦 NPM/Yarn Commands
- ⚙️ Laravel Commands
- 🐍 Python Stack (Optional)
- 🧰 Makefile Generator
sange/
├── .github/ # GitHub workflows, issue templates, etc.
├── docs/ # Stack-specific documentation
│ ├── git.md
│ ├── docker.md
│ ├── npm.md
│ ├── laravel.md
│ ├── python.md
│ └── makefile-generator.md
│ └── ...
├── src/
│ ├── configs/ # Global variables and config defaults
│ ├── makefiles/ # Core and stack-specific Makefiles
│ │ ├── supports/ # Generators, initializers, shared logic
│ │ ├── docker.mk
│ │ ├── git.mk
│ │ ├── npm.mk
│ │ ├── laravel.mk
│ │ ├── ...
│ ├── scripts/ # Helper shell scripts (git.sh, sange.sh, etc.)
│ └── sange.mk # Master Makefile entry point
├── templates/ # Makefile scaffolding templates
│ └── makefile.template
└── README.md # This file
git clone https://github.com/simtabi/sange.git
cd sange
Then, include the core Makefile in your project-specific makefile
:
# Example project Makefile
GIT_REPO := $(CURDIR)
DEFAULT_COMMIT_MESSAGE := '📦 chore(my-app): update'
include path/to/sange/src/sange.mk
Sange is designed to help teams automate without overengineering:
- No lock-in
- No dependencies
- Easy to audit
- Easy to extend
- Made for both beginners and power users
MIT © Simtabi