This web app is intended for restreaming Ori and the Blind Forest speedrun races.
- Single timer with finish times and animation
- Change the players and commentary names without reloading the page
- Skill tracker integration
- Pulls data from google sheets to show stats/standings
- Stat fly-ins for main stream page
Build instructions:
- Development:
Run
npm start
in one terminal (to start the server) andng serve --port=4201
in another (to start the development environment). Alternatively, if you install dev dependencies, you can simply runrun-p start dev
ornpm run start-dev
. - Production:
Run
ng build --prod
to output the web app to/dist
. Copy/dist
to the web app server and runnpm start
on the socket server OR simply run both socket and web app from the same server vianpm start
.