bob
bob copied to clipboard
`bob run` add option to use ui development servers
When running a local environment with multiple frontends it is tedious to start them by hand in multiple shells. This issue is about adding support for development with hot reload capacities.
Consider
- Stream
cmdoutput correctly to the tui started bybob run. Consider how terminal reset can be handled correctly (e.g. vue's dev server cleans the output after a successful build) - The
cmdrun task could probably implement the noop issue https://github.com/benchkram/bob/issues/36
Example bob.yaml
run:
server:
type: binary
path: ./build/server
dependson:
- build
ui:
cmd: npm run serve
dir: ./ui
dependson:
- server