-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
config: Improve configuration and service management #1314
Conversation
Makefile
Outdated
.PHONY: init | ||
init: | ||
go get -u \ | ||
GO111MODULE=off go get -u \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not use the tools.go
solution (the "official" one for handling tool installs in module aware mode) so you only have to do go install
here instead of GO111MODULE=off go get -u...
(latest version of everything).
+Info: https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Interesting, I didn't know that worked!
Signed-off-by: aeneasr <[email protected]>
Signed-off-by: aeneasr <[email protected]>
# Conflicts: # client/sql_migration_files.go # cmd/root_test.go # cmd/server/handler_oauth2_factory.go # consent/handler.go # consent/sql_migration_files.go # go.mod # go.sum # jwk/sql_migration_files.go # oauth2/handler.go # oauth2/handler_struct.go # oauth2/sql_migration_files.go
Signed-off-by: aeneasr <[email protected]>
Signed-off-by: aeneasr <[email protected]>
Signed-off-by: aeneasr <[email protected]>
Signed-off-by: aeneasr <[email protected]>
Signed-off-by: aeneasr <[email protected]>
Signed-off-by: aeneasr <[email protected]>
Signed-off-by: aeneasr <[email protected]>
Signed-off-by: aeneasr <[email protected]>
Signed-off-by: aeneasr <[email protected]>
Signed-off-by: aeneasr <[email protected]>
No description provided.