An open API service indexing awesome lists of open source software.

https://github.com/cheshire137/candyfair

Determine the fairest way to distribute your Halloween candy amongst picky eaters.
https://github.com/cheshire137/candyfair

app candy distribution halloween rails

Last synced: over 1 year ago
JSON representation

Determine the fairest way to distribute your Halloween candy amongst picky eaters.

Awesome Lists containing this project

README

          

![Candyfair](https://raw.githubusercontent.com/cheshire137/candyfair/master/app/assets/images/CANDYFAIR-75px.png)

The fairest way to distribute candy! Thanks to
[summasmiff](https://github.com/summasmiff) for the logo!

## How to Develop

Install PostgreSQL, e.g., `brew install postgres`.

bundle install
cp dotenv.development .env

Update `.env` with details about your database.

bin/rake db:create db:migrate db:seed
foreman start

## How to Deploy to Heroku

Create your app on Heroku, then add the `heroku` git remote.

heroku config:set DEFAULT_USER=desired_default_username
heroku config:set DEFAULT_PASSWORD=desired_default_account_password
git push heroku master
heroku ps:scale web=1
heroku run bin/rake db:migrate db:seed