rustywatch 0.2.11

Live reloading for any programing languages
Documentation
# examples

Check this in the root `../rustywatch.yaml`.

```yaml
workspaces:
  - dir: 'web'
    cmd: 'cd web;npm run dev'
  - dir: 'examples/go-fiber'
    cmd:
      - echo "go-fiber"
      - |
        cd examples/go-fiber;
        go build;
    bin_path: 'examples/go-fiber/go-fiber'
  - dir: 'examples/nodejs'
    cmd:
      - echo "nodejs"
      - cd examples/nodejs;npm start;
  - dir: 'examples/rust-actix'
    cmd:
      - echo "rust-actix"
      - |
        cd examples/rust-actix;
        cargo build;
    bin_path: 'examples/rust-actix/target/debug/rust-actix'
    ignore:
      - 'examples/rust-actix/target/'
  - dir: 'examples/bun'
    cmd:
      - echo "bun expressjs"
      - |
          cd examples/bun;
          bun --watch ./server.ts;
```