Decision making app for roommates, friends, or whatever. Anonymous, easy and fast.
- Fork this repo
- Clone to your machine
- Update the .env file with your correct local information
- Install dependencies:
npm i
- Fix to binaries for sass:
npm rebuild node-sass
- Run migrations:
npm run knex migrate:latest
- add to env.
MAILGUN_KEY=<your_mailgun_key>
MAILGUN_DOMAIN=<your_mailgun_domain>
- Check the migrations folder to see what gets created in the DB
- Run the seed:
npm run knex seed:run
- Check the seeds file to see what gets seeded in the DB
- Run the server:
npm run local
- Visit
http://localhost:8080/
- Add new remote as the master branch
$ git remote add absolute-master https://github.com/jelocodes/room8
- Pull from master to get latest stable version before working
git pull absolute-master
- Checkout and switch to a new branch named as the feature you're working on
get checkout -b pwn-noobs
- Do local tests
- Push to your forked copy's branch on Github (not absolute-master)
git push origin pwn-noobs
- Open pull request
- Wait for merge
- Node 5.10.x or above
- NPM 3.8.x or above