Quick start
Create stack.config.yaml in the project root:
# stack.config.yaml
commands:
- name: api
run: npm run dev
cwd: ./api
color: green
- name: web
run: npm run dev
cwd: ./web
color: blue
Run it:
stackrun
stackrun loads stack.config from the current directory. Pass a path if the file is elsewhere:
stackrun --config ./stack.config.yaml