The Memosa Meteor FE, Mobile, and BE application.
Master Status
Develop Status
Welcome to the Memosa repo, lucky you! Here's some quick steps to get started!
- Install Meteor
- Install Yarn
cp settings.example.json settings.json
npm run seed
npm start
- Check out http://localhost:3000/.
npm start
Then go to http://localhost:3000/.
- Run linter and tests with coverage:
$ yarn test
- Run lint:
$ yarn run lint
- Watch lint:
$ yarn run lint:watch
- Run mocha tests once:
$ yarn run test:mocha
- Watch mocha tests:
$ yarn run test:watch
- Run coverage:
$ yarn run test:cover:mocha
- Teardown your mongo database:
$ npm run teardown
. - Seed your mongo database:
$ npm run seed
. - Run Meteor in one terminal:
$ npm start
. - Run Chimp in another terminal:
$ npm run acceptance:watch
.
HEADS UP! Do NOT have Meteor running when you run these commands.
You can seed your database with a test account with notebooks using:
npm run seed
The test user is:
email: [email protected]
pass: testing
You can run the following command to clear your database:
npm run teardown