github - oxequa/realizeを使ってみたメモ。
go get github.com/oxequa/realize
./demo/
├── .realize.yaml
└── main.go
.realize.yaml
settings:
legacy:
force: false
interval: 0s
schema:
- name: demo
path: .
commands:
run:
status: true
watcher:
extensions:
- go
paths:
- /
ignored_paths:
- .git
- .realize
- vendor
main.go
package main
import (
"fmt"
"net/http"
)
func handler(w http.ResponseWriter, r *http.Request) {
fmt.Fprint(w, "Hello World")
}
func main() {
mux := http.NewServeMux()
mux.HandleFunc("/", handler)
http.ListenAndServe(":8080", mux)
}
demoディレクトリにて、realize start --server
をすると、監視用サーバーが立ち上がり、ホットリロードができるようになる。
監視サーバーhttp://localhost:5002/#/demo
log、error、outputが見れる。
main.goで起動されるサーバーhttp://localhost:8080
簡単に導入できて便利なのでほっとリロードはこれ使っていこうかーという気持ち。