An app to manage requests for music performance streamers to learn new songs. https://lrq.k7dxs.net/
 
 
 
 
 
 
Go to file
Dessa Simpson a5a8d012c8 Bump version to 0.2.1 2020-11-10 15:10:08 -07:00
db Add v0.1-v0.2.sql upgrade script 2020-11-10 14:10:58 -07:00
public Implement fetching of video titles 2020-11-10 00:20:20 -07:00
src Bump version to 0.2.1 2020-11-10 15:10:08 -07:00
views Make streamer name and profile picture in navbar link to twitch page 2020-11-10 15:09:27 -07:00
.dockerignore Initial commit 2020-07-01 20:08:33 -07:00
.gitignore Initial commit 2020-07-01 20:08:33 -07:00
Dockerfile Initial commit 2020-07-01 20:08:33 -07:00
README.md Add Youtube API key to README.md instructions 2020-11-09 13:37:12 -07:00
docker-compose.yml Forward Postgres port from host 2020-08-07 21:28:53 -07:00
nodemon.json Initial commit 2020-07-01 20:08:33 -07:00
package-lock.json Finish implementing login 2020-07-05 14:15:30 -07:00
package.json Finish implementing login 2020-07-05 14:15:30 -07:00
tsconfig.json Consistency and cleanup 2020-08-02 22:06:28 -07:00

README.md

Learn Request Queue

An app to manage requests for music performance streamers to learn new songs.

Bootstrapping a Development Environment

  1. Populate .env with:

     URL_PREFIX=http://localhost
    
     PGHOST=db
     PGDATABASE=postgres
     PGUSER=postgres
    
     TWITCH_CLIENTID=Client ID from dev.twitch.tv
     TWITCH_SECRET=Client Secret from dev.twitch.tv
     SESSION_SECRET=Randomly generated secret
     YOUTUBE_SECRET=API Key from Google developer console (Youtube Data API v3, from web server)
    
     LOG_LEVEL=INFO
    
  2. docker-compose up (optionally with -d)