Skip to content

Quickstart

Create mimamoru.yaml:

watches:
  - name: "backend"
    paths: ["**/*.go"]
    ignore: ["**/vendor/**"]
    prep:
      - name: "build"
        command: "go build -o bin/app"
    daemons:
      - name: "server"
        command: "bin/app"

Run:

mimamoru