Go to file
2021-03-25 22:03:49 +13:00
cmd/go-scrobble Basic API structure 2021-03-25 18:15:01 +13:00
init Basic API structure 2021-03-25 18:15:01 +13:00
internal/goscrobble Basic API structure 2021-03-25 18:15:01 +13:00
migrations Add user table + funcs 2021-03-24 22:28:05 +13:00
test Initial Commit 2021-03-23 21:43:44 +13:00
web Typo 2021-03-25 22:03:49 +13:00
.env.example Add example env 2021-03-25 18:15:14 +13:00
.gitignore Basic API structure 2021-03-25 18:15:01 +13:00
go.mod Basic API structure 2021-03-25 18:15:01 +13:00
go.sum Basic API structure 2021-03-25 18:15:01 +13:00
LICENSE Initial commit 2021-03-23 19:07:39 +13:00
README.md Basic API structure 2021-03-25 18:15:01 +13:00

go-scrobble

Golang based music scrobbler. MySQL 8.0+

Currently building on Node V15.X & Go V1.16.X

With a prebuilt binary - you will still need the migrations folder + web/build folder on prod.

Copy .env.example to .env and set variables. You can use https://www.grc.com/passwords.htm to generate a JWT_SECRET.

Setup MySQL

create user 'goscrobble'@'%' identified by 'supersecurepass';
create database goscrobble;
grant all privileges on goscrobble.* to 'goscrobble'@'%';

Local build/run

cp .env.example .env # Fill in the blanks
cd web && npm install && npm start
# In another terminal
go mod tidy
CGO_ENABLED=0 go run cmd/go-scrobble/*.go

Access dev frontend @ http://127.0.0.1:3000 + API @ http://127.0.0.1:42069/api/v1

Run local tests

go test test/*

Prod deployment

We need to build NPM package, and then ship web/build with the binary. cp .env.example .env # Fill in the blanks cd web npm install --production && npm run build go build -o goscrobble cmd/go-scrobble/*.go ./goscrobble