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
This commit is contained in:
Dessa Simpson 2020-07-06 22:02:28 -07:00
parent 18ff4c9d1f
commit 567b2bba27
3 changed files with 26 additions and 0 deletions

5
db/testdata.sql Normal file
View file

@ -0,0 +1,5 @@
INSERT INTO requests (url,requester,score,state) VALUES
('https://www.youtube.com/watch?v=dQw4w9WgXcQ','virtualdxs',0,'Rejected'),
('https://www.youtube.com/watch?v=C5oeWHngDS4','virtualdxs',500,'Requested'),
('https://www.youtube.com/watch?v=vXaJGBLRA_o','virtualdxs',0,'Requested');