Caige Nichols
Caige Nichols
```golang package main import ( "github.com/gin-contrib/cors" "github.com/gin-gonic/gin" ) func main() { router := gin.Default() // same as // config := cors.DefaultConfig() // config.AllowAllOrigins = true // router.Use(cors.New(config)) router.Use(cors.Default()) router.GET("/ping", func(c...
I had a typo in the header `Orgin: http://localhost` instead of `Origin: http://localhost` I was sending, sorry for the noise.
While using the `golang:1.4-wheezy` and a simple martini example within a docker container, I get `http: proxy error: dial tcp 127.0.0.1:3001: connection refused`.
Here's the dockerfile and example code I'm using: https://gist.github.com/caiges/3527b9213ce841f511fe and the command I'm using: gin --path /opt/helloworld /opt/helloworld/main.go
Hmm, haven't observed that behavior. Can you link your code?
Hmm, might be something in the lifes.com repo you're using. I slightly modified your [Dockerfile](https://gist.github.com/caiges/28701c5633294548fed0), built with `docker built -t testapp` and was able to run `docker run testapp gin...
This isn't reproducible with Terrorm `0.12.9`. `output.txt` and the state file are produced correctly.
I'm running into this as well. Reverting to an older release that did not change private maven server configuration to use JSON blobs works fine: ``` uses: qcastel/[email protected] with: maven-repo-server-id:...
@ericmcgregor You could also set the display CSS property on the flash message container to "none" and then set the "active class" ("in" by default) display property to "block", "inline",...
The latest sveltekit has even more changes. See [design pre-1.0](https://github.com/sveltejs/kit/discussions/5748), [removal of session](https://github.com/sveltejs/kit/discussions/5883) and the [migration guide](https://github.com/sveltejs/kit/discussions/5774). I'm more than happy to help but this isn't just a minor change...