-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
20 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,24 +1,6 @@ | ||
# How To Install? | ||
|
||
## MacOs | ||
|
||
```sh | ||
// TODO: brew install | ||
``` | ||
|
||
## From Binary Releases (macOS, Windows, Linux) | ||
|
||
## Using [`GO`](https://go.dev/dl) toolchain | ||
|
||
```sh | ||
go install github.com/heybran/todo-app@latest | ||
``` | ||
|
||
## Build The Binary Yourself | ||
|
||
# building the program for intel macs | ||
GOOS=darwin GOARCH=amd64 go build -o gurl-mac-amd64 cmd/gurl/main.go | ||
# building the program for M1 macs | ||
GOOS=darwin GOARCH=arm64 go build -o gurl-mac-arm64 cmd/gurl/main.go | ||
# building the program for 64 bits amd/intel linux | ||
GOOS=linux GOARCH=amd64 go build -o gurl-linux-amd64 cmd/gurl/main.go | ||
go install github.com/heybran/gtodo@latest | ||
``` |