A simple CLI for getting the lyrics for songs those time you just have to sing along to the music blasting around you. Sing out more, sing out loud 🔊
You will need API keys for both Genius (create here) and apiseeds (create here) in order to compile.
To make it easier to hack on the project create a Makefile
with the following
content and add your keys:
GENIUS_CLIENT_ACCESS_TOKEN=
APISEEDS_API_KEY=
ldflags="-X github.com/jadlers/zzng/genius.clientAccessToken=$(GENIUS_CLIENT_ACCESS_TOKEN)\
-X github.com/jadlers/zzng/apiseeds.clientApiKey=$(APISEEDS_API_KEY)"
build:
go build -ldflags=${ldflags}
install:
go install -ldflags=${ldflags}
Now all you need to do is run make build
or make install
.