mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-01 05:32:18 +00:00
- Login flow working..
- Jellyfin scrobble working - Returns scrobbles via API for authed users /api/v1/user/{uuid}/scrobble - Add redis handler + funcs - Move middleware to pass in uuid as needed
This commit is contained in:
parent
c83c086cdd
commit
5fd9d41069
54 changed files with 1093 additions and 386 deletions
|
@ -1,3 +1,10 @@
|
|||
# 0.0.2
|
||||
- Login flow working..
|
||||
- Jellyfin scrobble working
|
||||
- Returns scrobbles via API for authed users /api/v1/user/{uuid}/scrobble
|
||||
- Add redis handler + funcs
|
||||
- Move middleware to pass in uuid as needed
|
||||
|
||||
# 0.0.1
|
||||
- Initial commit
|
||||
- Added basic registration/login flow
|
||||
|
|
|
@ -11,12 +11,13 @@ These are stored in `web/.env.production` and `web/.env.development`
|
|||
MYSQL_PASS= // MySQL Password
|
||||
MYSQL_DB= // MySQL Database
|
||||
|
||||
REDIS_URL= // Redis host
|
||||
REDIS_HOST=127.0.0.1 // Redis host
|
||||
REDIS_PORT= // Redis port (defaults 6379)
|
||||
REDIS_DB=4 // Redis DB
|
||||
REDIS_PREFIX="gs:" // Redis key prefix
|
||||
REDIS_AUTH="" // Redis password
|
||||
|
||||
TIMEZONE= // Used for MySQL connection
|
||||
TIMEZONE= // Unix Timezone. Used for MySQL connection
|
||||
|
||||
JWT_SECRET= // 32+ Char JWT secret
|
||||
JWT_EXPIRY=86400 // JWT expiry
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue