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.
- Host: GitHub
- URL: https://github.com/cheshire137/candyfair
- Owner: cheshire137
- Created: 2015-10-27T22:51:02.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2018-04-14T19:47:28.000Z (over 8 years ago)
- Last Synced: 2025-04-08T02:35:16.778Z (over 1 year ago)
- Topics: app, candy, distribution, halloween, rails
- Language: Ruby
- Homepage:
- Size: 875 KB
- Stars: 5
- Watchers: 0
- Forks: 1
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

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