To add more buzzwords to the collection, make changes to app/utils/buzzwords.js. This app is meant to be fun and silly, so buzzword selection is not strict. Feel free to open up a PR to add buzzwords to the bingo board. The only thing we won't allow are people's names or communities. The Ember core team and community is amazing and we shouldn't be mean to them!
Lend a hand and open a PR to help with one of these jobs to be done if you want. :)
You will need the following things properly installed on your computer.
git clone <repository-url>
this repositorycd ember-bingo
npm install
ember serve
Since this app uses service workers, you will have to wait for a rebuild on every change in order update the app's sw.js
. See the ember-service-worker
versionStrategy
in ember-cli-build.js
. See the ember-service-worker documentation on versioning.
Make use of the many generators for code, try ember help generate
for more details
ember test
ember test --server
ember build
(development)ember build --environment production
(production)The app is deployed to Heroku. Commit changes via git then git push heroku master
.
For now, make sure the app is deployed without a yarn.lock
file so that it installs packages via npm (bug with yarn install and Heroku deploys).