Authors: Carmen Perezchica, Marcy Silverman, Kate Dameron, Lance Merill
https://notes-to-self.netlify.com
Note to Self is an app that seeks to aid users in their goal to rewire their inner dialogue from negative self-talk to affirmative new habits. Users can do this by creating an account and scheduling sms messages to be sent once, daily or weekly. Users can view their own scheduled affirmations as well as see anonymous affirmations by other users on the community page.
.
├── src # Application
actions
reducers
selectors
components
containers
services
├── test # Unit and E2E tests
├── seed.js # Load seed data to MongoDB
├── server.js # Run Express server
├── LICENSE
└── README.md
-
Clone and download GitHub repo
-
Install dependencies:
npm i -
Run scripts:
npm run lint
npm run pretest
npm run test
npm run test:watch
npm run start(start node server)
npm run start:watch(start nodemon server)
npm run seed(seed database)
npm run drop(drop MongoDB)
npm run db-load-all(drop db and load seed data from scratch)
Standard MIT
Thanks to Ryan Mehta for his guidance and consulting.