update docs

This commit is contained in:
XenGi 2024-01-23 12:18:27 +01:00
parent 09e21904ae
commit e38a94264b
Signed by: xengi
SSH key fingerprint: SHA256:jxWM2RTHvxxcncXycwwWkP7HCWb4VREN05UGJTbIPZg
2 changed files with 11 additions and 0 deletions

View file

@ -15,6 +15,9 @@ run: build ## Run project
build: ## Compile project
go build -v -o ${PROJECT}
update: ## Update go dependencies
go get -u
tidy: ## Add missing and remove unused modules
go mod tidy

View file

@ -20,6 +20,14 @@ sanic is developed using [Nix][nix], but you can also just use the usual Golang
Run local [MPD][mpd] instance for testing with `make mpd`.
Update go depdendencies like this:
```shell
go get -u # or `make update`
go mod tidy # or `make tidy`
gomod2nix
```
### ❄️ w/ Nix
Enter development shell (also has [mpc][mpc] client installed for testing):