An app to manage requests for music performance streamers to learn new songs. https://lrq.k7dxs.net/
 
 
 
 
 
 
Go to file
Dessa Simpson 567b2bba27 Make demo-ready
- Add README.md
- Add DB test data
- Add port forward to docker-compose to allow the app to be accessed on
  Macs
2020-07-06 22:02:28 -07:00
db Make demo-ready 2020-07-06 22:02:28 -07:00
public Implement addRequest in UI 2020-07-06 21:24:04 -07:00
src Get client id and url prefix from config in main.eta 2020-07-06 22:02:19 -07:00
views Get client id and url prefix from config in main.eta 2020-07-06 22:02:19 -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 Make demo-ready 2020-07-06 22:02:28 -07:00
docker-compose.yml Make demo-ready 2020-07-06 22:02:28 -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 Initial commit 2020-07-01 20:08:33 -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
    
  2. docker-compose up (optionally with -d)

  3. docker exec -i learn-request-queue-db /usr/bin/psql -U postgres < db/testdata.sql