gin
gin copied to clipboard
Live reload utility for Go web servers
It seems that the emacs flymake package works by creating go files prepended with flymak. These are saved as you type so it can report errors within emacs buy seem...
I'm new at Go, and I'm using your package to live reload the source. I have seen 2 issues. The first one is after a few seconds, of running, files...
**Purpose**: reduce write on disk (/tmp is RAM) Shell script ``` gin -i -b "/tmp/gin-bin" "go build test.go && ./tmp/gin-bin" ``` the output ``` 2014/12/10 15:45:16 http: proxy error: dial...
Hey, thanks for making gin! I'm having a little problem when importing local packages.. It complains with: `can't load package: /x/y/main.go:7:2: local import "./routes" in non-local package` Doesn't happen when...
Might be worth checking whether there's a `go` binary in $PATH on startup. When setting up a new install recently, I encountered the following immense stacktrace when using a terminal...
hi, could it be possible to add support for watching other file extensions other than *.go? i have for instance HTML templates that are read at application startup and i...
I think the reason is the `filepath.Walk` did not support that? any workaround?
Use graceful(https://github.com/stretchr/graceful), we can shutdown the application gracefully. Gin kill the app in 3seconds(in lib/runner.go), while the connection is still living. And, the lib/builder.go use go to build binary file,...
I think it would be nice to have a tagged release binary that users can come download instead of telling the user to go get to install.
I'm using Vagrant, and it frequently has a lot of problems keeping the correct time. This means sometimes I modify a file at 16:16 when time.Now() keeps saying it's 16:12...