Skip to content

laurencedorman/secrethitler

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Secret Hilter

http://www.secrethitler.party

Secret Hitler for mobile devices.

Disclaimer

Building this so my friends and I can play this awesome board game even if we don't have the physical game.

The game and rules are not mine. All taken from the actual board game "Secret Hilter"

Secret Hilter was created by Mike Boxleiter, Tommy Maranges, Max Temkin, and Mac Schubert

I built this web app, Secret Hitler as a Meteor.js learning project. Uses MongoDB and Handlebars

Official Rules

Screenshots for Mobile view

Lobby View / Seating View / Game View

Technology

  • MeteorJS
  • Handlebars
  • MongoDB
  • app deployed on Heroku

Cron used to clean up Database (remove inactive Rooms and Players)

  function cleanUpDatabase() {
    // remove old rooms and players
    let cutOffTime = moment().subtract(8, 'hours').toDate().getTime();

    let numRoomsRemoved = Rooms.remove({
      createdAt: {$lt: cutOffTime}
    });

    let numPlayersRemoved = Players.remove({
      createdAt: {$lt: cutOffTime}
    });
  }

  // Cron Job to remove old rooms and players
  let MyCron = new Cron(60000);
  MyCron.addJob(5, cleanUpDatabase);

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 64.4%
  • HTML 29.5%
  • CSS 6.1%