Zapper
A lightweight dev environment runner for local multi-service projects.
Install
bash
npm install -g pm2 @mp-lb/zapperCreate zap.yaml
yaml
project: myapp
env: [.env]
native:
backend:
cmd: pnpm dev
env: "*"
frontend:
cmd: pnpm dev
cwd: ./frontend
env: "*"
docker:
postgres:
image: postgres:15
ports:
- 5432:5432Run
bash
zap up
zap status
zap downSee the full reference for every zap.yaml field and command.