Tit Petric
Tit Petric
I don't see why we couldn't extend support to arm64 targets for example. Given goos and goarch arguments and a cross build dockerfile base, unofficially at the very least, we...
Hate to say it, but still a typo (missing underscore). Next one will cost you a michelada 📃😅 Check out the rest of the first comment, maybe we don't need...
Closing as stale/incorrect multiple times, if you need it file a ticket.
I think this PR may be invalid, same-line deprecation comments are reported by golangci-lint, e.g.: ``` api_definitions.go: VersionData VersionData `bson:"version_data" json:"version_data"` // Deprecated. Use VersionDefinition instead. ``` This one is...
This has probablly been changed, I do see the golangci-lint report issues without changes to `./...` (see [here](https://github.com/TykTechnologies/tyk/runs/5398419137?check_suite_focus=true)). I also verified with nektos/act that the invocation particularly includes `./...`, if...
@craicoverflow perhaps `only-new-issues: true` is the underlying cause.
The calculation here also doesn't take the height of `.ss-scroll` into account: ```top:' + (_this.el.scrollTop / totalHeight ) * 100``` totalHeight should be decreased by the height of the `.ss-scroll`...
Your fork is awesome, even compared to commondream/egon. +1 on (--help) and making views optional, extension optional... just thank you. Could you consider fielding some issues (turned off at the...
I always have issues with new non-language specific syntax being added to the template engine syntax. You're literally learing a new pseudo language - this is why i like templates...
Hack2, since I'm building a docker image, this Dockerfile: ``` FROM errbit/errbit ARG ERRBIT_ADMIN_USERNAME=admin ARG ERRBIT_ADMIN_PASS=admin ARG ERRBIT_ADMIN_EMAIL="[email protected]" ENV ERRBIT_ADMIN_USERNAME=${ERRBIT_ADMIN_USERNAME} ERRBIT_ADMIN_PASS=${ERRBIT_ADMIN_PASS} ERRBIT_ADMIN_EMAIL=${ERRBIT_ADMIN_EMAIL} RUN sed -i "s/^admin_username.*/admin_username = \"${ERRBIT_ADMIN_USERNAME}\"/" db/seeds.rb &&...