gin icon indicating copy to clipboard operation
gin copied to clipboard

Live reload utility for Go web servers

Results 88 gin issues
Sort by recently updated
recently updated
newest added

This commit brings support for the gb build system (http://getgb.io/) by passing in a --usegb / -gb flag. Unfortunately, Gb doesn't currently support arbitrary naming of build output files (See:...

If the command fails, command.ProcessState will be nil and command.ProcessState.Success() in lib/builder.go:60 will panic with a nil pointer error.

Related to https://github.com/codegangsta/gin/issues/44 be nice to watch a separate directory where template files are kept.

It would be nice if gin support full path for -b, for example: `gin -b /tmp/out.bin` all we need is to modify inside `func MainAction(c *cli.Context) {` ``` //runner :=...

Hi, I'm using gin for a while and I saw you advice to use "github.com/namsral/flag" in README if we need to override options in our app. I've got an "-port"...

The package watcher looks at the package in the current working directory, and parses the source code to find out the imports. It then figures out which of those imports...

show build duration (ms) ![image](https://cloud.githubusercontent.com/assets/1061610/6387901/6ba6fbf6-bdc5-11e4-8b90-c4dbb61a51dd.png) Maybe something like this: ``` func build(builder gin.Builder, runner gin.Runner, logger *log.Logger) { start := time.Now() err := builder.Build() if err != nil { buildError...

Right now `gin` only listens to `.go` files, which requires me to restart the server to see changes to `.html` files. It might be useful to be able to specify...