Skip to content

Latest commit

 

History

History
16 lines (9 loc) · 1.12 KB

README.md

File metadata and controls

16 lines (9 loc) · 1.12 KB

Game Buzzer

I wanted to create a game buzzer for a video-call quiz with some friends; so I built this! It's a simple game/quiz buzzer web app that lets everyone have the app open, and when people buzz, it tells you who won and tells everyone!

It has an suitably jarring quiz buzzer sound in it as well that sounds when people buzz; the comedic effect is significant!

demo

Architecture

I'm using the new Azure Static Apps feature for the user interface part of the application. Check out the github action that deploys it.

I use Azure Signalr to power the real-time comms.

The Azure Functions support in Azure Static Apps doesn't support SignalR (yet?), so there is a separate Azure Functions deployment that provides the very simple couple of functions that are required (written in C#, under ./api) to power the real-time comms. This is deployed by a separate github action.