André Eriksson
André Eriksson
Ah, thanks for the clarification. That's strange. How exactly did you install Encore in the first place?
It's not clear to me that this is the right approach to solving the problem. 30 instances is a lot, and 30 instances with 2 CPUs each seems like a...
I believe `[]string` is supported in the latest version of Encore.
There are thousands of Encore.go applications with many many services, so that's not the issue. Please provide a complete reproducer, otherwise we can't really look at this.
Bug: Union type exported from a shared package is not recognized as a union in API schema validation
We've made a bunch of improvements to the type resolution logic already. It's possible this issue has been fixed in the latest release. If you can verify and let us...
In order to make an endpoint public you must specify `expose: true`, which defaults to false for exactly this reason. As a result I don't think this is a concern...
That should work fine, but the syntax is `string & MyValidation` not `string | MyValidation`. For example, this works just fine: ```typescript type MyValidation = MatchesRegexp & MaxLen; interface MyRequestParams...
This is not currently a recognized idiom, because Go doesn't enforce that those are the only values. It's perfectly valid to pass in `SomeType{Season: Season("test")}`. We'd have to come up...
You can already define a middleware that uses go-validator without requiring the use of a `Validate()` method, if you wish to use it by default.