-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:ObrienlabsDev/biometric-backend-go
- Loading branch information
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,23 @@ | ||
# biometric-backend-go | ||
biometric rest backend in Golang | ||
|
||
# DevOps | ||
## Upgrade OSX go | ||
Download latest (1.22.5) - https://go.dev/dl/ | ||
|
||
Remove go | ||
``` | ||
note: module requires Go 1.23 | ||
michaelobrien@mbp7 10001 % go version | ||
go version go1.17.8 darwin/amd64 | ||
michaelobrien@mbp7 10001 % which go | ||
/usr/local/go/bin/go | ||
michaelobrien@mbp7 10001 % sudo rm -rf /usr/local/go/bin | ||
``` | ||
Install | ||
``` | ||
michaelobrien@mbp7 10001 % go version | ||
go version go1.22.5 darwin/arm64 | ||
``` | ||
# Links | ||
- https://go.dev/doc/tutorial/web-service-gin |