Gerasimos (Makis) Maropoulos

Results 259 comments of Gerasimos (Makis) Maropoulos

Yes, I can create a template for clean arch with Iris + Go. There is already a working example at: https://github.com/iris-contrib/clean-architecture

@chenbingao you probably have issues downloading from `golang.org`, are you behind a proxy? If so, you should change the `GOPROXY` environment. Open your command line interface and execute the following:...

Hello, The `.iris.yml` file should be ignored and the tool does it automatically on `iris-cli init` (it adds the .iris.yml to `.gitignore` [automatically](https://github.com/kataras/iris-cli/blob/a426b4a6765858643df085b86d911275518a28cd/cmd/init.go#L212), if not already exist). Also, all project...

Hello @ArishSultan, we don't have to do anything here, as I see, ther eis already a [go implementation](https://github.com/rsocket/rsocket-go). Why does that doesn't suit your needs?

@TechMaster CLA: https://cla-assistant.io/kataras/iris?pullRequest=1959

Hello @kamilogorek , @rhcarvalho, Based on my experience, examples should be located at `_examples` and each one of the example should contain `go.mod` and `go.sum` files separately. Other subpackages should...

> also app.Use(sessManager.Handler(strictSameSiteOpt)) sets session ids for app.HandleDir requests which should never happen. I guess that's a major issue because that recreates a strict cookie again. It should happen if...

> i've forgot to enable AllowReclaim. Then it's working but only without securecookie 🤔 You mean that the loop you said, is still valid? If so, could you please post...

Hello @yuanzicheng, @Sloaix , @bladewhite, @huyinghuan , @yuanzicheng, @axetroy This is directly supported to view engines (e.g. `app.RegisterView(iris.HTML(..))`) and File Server (`app.HandleDir`). Please update: ``` go get github.com/kataras/iris/v12@master go mod...