Skip to content

kbuzsaki/bingosync

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 

Bingosync.com

This is the repository powering bingosync.com, a web application that lets people collaboratively work on "bingo boards" when speedrunning games.

For more information on speedrunning and bingo, you can read:

Fun Implementation Details! :D

Bingosync is implemented using a combination of the django and tornado web servers. The django web server (bingosync-app) hosts the main website content, serves most of the pages, and talks to the database. The tornado web server (bingosync-websocket) maintains all websocket connections to the site and passes messages along to the clients in a "publish and subscribe" kind of model.

The actual site is hosted on one of my personal machines. It's running behind an nginx proxy that serves static files and splits traffic to the django and tornado servers. I use postgres for the database. Conveniently, this machine is the same one that I run bingobot off of. Maybe there's some opportunity for integration there in the future :)