Mindflow is a todo app that includes neurohacking tools to boost productivity while decreasing stress.
The app is available here.
The app was built as a second project during Ironhack's Full Stack Developer bootcamp. It was awarded gold medal for best project by teachers and students.
- Svg animations using Green Sock
- User authentication and authorization via Passport (local and Google strategies)
- Password reset via Nodemailer
- User data stored in a MongoDB database
- Two playlists that boost creativity and problem-solving skills, fetched from Spotify's API
- A built-in Pomodoro timer for an optimal work/break pattern
- A breath bubble that promotes cardiac coherence and instant relaxation
Add the following variable with your own values inside a .env
file:
- PORT (local port to call the app)
- MONGO_URI (local URL to call the database)
- SESSION_SECRET (random sentence used as a session secret)
- CLIENT_ID (client id from your Spotify developer account)
- CLIENT_SECRET (client secret from your Spotify developer account)
- GMAIL_USER (Gmail address for Nodemailer)
- GMAIL_PWD (Gmail address password)
- GOOGLE_OAUTH_ID (client id from your Google developer account)
- GOOGLE_OAUTH_SECRET (client secret from your Google developer account)
- GOOGLE_OAUTH_CALLBACK_URL (Google oAuth callback URL)
# install dependencies
$ npm i
You must log into Heroku first.
# create an Heroku app in the root directory
$ heroku create -a example-app
# deploy to Heroku
$ git push heroku main