Skip to content

railslove/kickerapp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3b8e9a9 Â· Dec 5, 2024
Mar 10, 2020
Oct 18, 2023
Dec 5, 2024
Oct 18, 2023
Feb 28, 2020
Feb 28, 2020
Feb 28, 2020
Feb 19, 2019
Feb 28, 2020
Oct 26, 2015
Jan 29, 2018
Mar 5, 2018
Jan 29, 2018
Jan 29, 2018
Sep 23, 2013
Oct 18, 2023
Oct 18, 2023
Feb 28, 2020
Sep 10, 2014
Sep 23, 2013
Feb 28, 2020
Mar 10, 2020
Mar 10, 2020

Repository files navigation

Kicker app

A wonderful application to allow your team / company determine who plays best. It features a variation of infamous chess ranking algorithm ELO. The algorithm is changed, as we are allowing team and single player games.

Find a working installation at: http://kicker.cool

Setup development

In order to get a local copy of production data, create a heroku db backup and import it into your local database:

# Optionally log in
heroku login

# Create a new backup
heroku pgbackups:capture --app crawlingcounter

# Download the latest backup
curl -o latest.dump `heroku pgbackups:url --app crawlingcounter`

# Restore data. Optionally: Specify user with '-U myuser'
pg_restore --verbose --clean --no-acl --no-owner -h localhost -d kickerapp_development latest.dump

Restart your rails app and everything should be set.