A simple Linux CLI for fast microservice setup with user-defined project templates. Scripter saves development time by letting you reuse scaffolding and automate environment initialization—perfect for microservice developers looking to standardize workflows.
Define and save templates from any directory with scripter make <templateName>.
In your project folder, create a scripts.json file (see examples/scripts.json) and run predefined scripts using scripter run <scriptName>.
git clone https://github.com/LuminousMyrrh/scripter.git
cd scripter
make
./dist/main
Linux only.
- Create a template:
scripter make authentication
Copies the current folder to ~/.config/scripter/templates/authentication.
- Run from scripts.json:
scripter run auth
Copies the template files into the current directory.
- Lightweight, fast CLI
- No dependencies
- Templates saved to
~/.config/scripter
| Version | Features |
|---|---|
| 0.1 | Basic impl |
| 0.2 | run command |
| 0.3 | make command |
| 0.4 | rm command |