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

OS: Windows 10 Professional Edition Command: **gin.exe run --appPort 8081 .\main.go** Output: ``` Incorrect Usage: flag provided but not defined: -appPort NAME: gin.exe run - Run the gin proxy in...

i got those error while access to url localhost:8080 ``` 2019/03/01 16:34:17 http: proxy error: dial tcp 127.0.0.1:3001: connect: connection refused ``` here my code ``` func handler(w http.ResponseWriter, r...

If the app being served is a HTTPS server, gin cannot connect to it. Proposal: Add a `--tls` flag to indicate that the backend is a TLS listener

Hi everybody, after doing `go get github.com/codegangsta/gin` and doing `gin -h` I get `gin: command not found`. I'm doing `gin -h` inside my `GOPATH`. I'm running on 4.4.63-1-MANJARO. What's causing...

When running multiple services, we must explicitly specify the proxy port number or else we will get `[gin] listen tcp :3000: bind: address already in use` It would be a...

Blocked by #163 --- Expands out the wercker.yml to a full spec that works with this project. Based in part off https://github.com/wercker/getting-started-golang but with package-dir fixes. Also fixes the md2man...

Right now, the wercker build is really very broken. #162 was an attempt at fixing it, but it's blocked because this is still using the version 1 Wercker stack, not...

Attempted these commands: gin run main.go --immediate gin run main.go -i gin -i run main.go gin --immediate run main.go Returns: Incorrect Usage: flag provided but not defined: -immediate In gin...

This code allows the ability to build the gin binary outside of the working directory. In some circumstances, this is very useful. For example, when running docker on a windows...