A planning poker application with real-time results.
You'll will need a Pusher application setup in order to run the Live Estimation Poker application. Just create one, and configure the APP_ID, KEY and SECRET in a .env
file:
RACK_ENV=development
PUSHER_APP_ID=<ID>
PUSHER_APP_SECRET=<SECRET>
PUSHER_APP_KEY=<KEY>
Now you can just run the application with foreman start
.
If you want to enable facebook, google or github integration you will need to create applications in each of these providers, and set their APP_ID and APP_SECRET as environment variables.
You can add them to the .env
file, and run the application with foreman start
:
FACEBOOK_APP_ID=<ID>
FACEBOOK_APP_SECRET=<SECRET>
GOOGLE_APP_ID=<ID>
GOOGLE_APP_SECRET=<SECRET>
GITHUB_APP_ID=<ID>
GITHUB_APP_SECRET=<SECRET>
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request