Kansattica / BuzzOff

Simple little thing for doing buzz-in quiz shows.

Home Page:https://buzzoff.princess.software

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Buzz Off!

A simple little quiz show "who buzzed in first" thing.

Try it out at buzzoff.princess.software!

Run Your Own

  1. Make sure you have the latest .NET 6.0 SDK.

  2. Clone the repo to your machine.

Command Line

  1. cd Server. You'll be doing the rest of this from in here.

  2. Run dotnet run --configuration Release to compile and run the server. You'll be given your choice of two addresses to point your browser at. If you want to use the HTTPS endpoint, you'll have to run dotnet dev-certs https --trust first.

  3. If you want to deploy this to some other server with just the .NET runtime, you'll want to dotnet publish --configuration Release, copy the folder to where you want it, and and run dotnet BuzzOff.Server.dll there.

Visual Studio

  1. Open BuzzOff.sln.

  2. Hit F5 and watch it go.

Notes

  • If you want the git hash and build date on the landing page to be accurate, have your CI system replace the strings @@GIT_HASH@@ and @@BUILD_TIME@@ in BuildHash.cs. I use two sed commands.

  • If you want to run this in an Azure app service, you can enable Application Insights by giving it an application setting named APPINSIGHTS_INSTRUMENTATIONKEY with your App Insights instrumentation key as the value.

About

Simple little thing for doing buzz-in quiz shows.

https://buzzoff.princess.software

License:GNU Affero General Public License v3.0


Languages

Language:C# 51.9%Language:HTML 30.1%Language:JavaScript 15.8%Language:CSS 2.2%