Skip to content

Commit

Permalink
fix: Added install info
Browse files Browse the repository at this point in the history
  • Loading branch information
Jelloeater committed Sep 1, 2024
1 parent 7a1ebba commit c8db8d6
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 4 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Stampy

## Install
Use https://github.com/zyedidia/eget

```shell
curl https://zyedidia.github.io/eget.sh | sh
sudo mv eget /usr/local/bin
sudo eget Jelloeater/stampy --to /usr/local/bin
```

Or if you have Go installed

```shell
go install github.com/Jelloeater/stampy@latest
```

## Usage

```shell
Expand Down
15 changes: 11 additions & 4 deletions Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,23 @@ version: '3'

tasks:
default:
dir: .
cmds:
- go mod download
- go mod tidy
- go mod verify
- go fmt .
- go vet .
- go clean .
- rm -rf ./build
- mkdir ./build
- go build -o ./build .
- ./build/stampy
- task: build
silent: false

build:
- rm -rf ./build
- mkdir ./build
- go build -o ./build .
- ./build/stampy

install-hooks:
cmds:
- pip install pre-commit
Expand Down

0 comments on commit c8db8d6

Please sign in to comment.