Welcome to Reflect!

Reflect is an app within the mental health space, inspired by a notable positive psychology course called The Science of Wellbeing with design inspired by Zoho notebooks and Penzu. With Reflect, the user engages in weekly rewirements designed to increase one's happiness and build more productive habits.

Live Link: Reflect within yourself - By Vivian Che

Technologies

Features

User log in and sign up

View user journals and delete journals

Create a journal

Edit a journal

View journal entries and create an entry

Edit and delete

Challenges

At first, it was difficult for me to figure out how each modal and page affect the states of of one another. However, I'ver realized how strong of a tool react hooks like useState and useEffect can make the rendering of the page seamless.

Stretch Goals

  • Search bar
  • Favorites

Getting started

  1. Clone this repository (only this branch)

    git clone https://github.com/appacademy-starters/python-project-starter.git
  2. Install dependencies

    pipenv install --dev -r dev-requirements.txt && pipenv install -r requirements.txt
  3. Create a .env file based on the example with proper settings for your development environment

  4. Setup your PostgreSQL user, password and database and make sure it matches your .env file

  5. Get into your pipenv, migrate your database, seed your database, and run your flask app

    pipenv shell
    flask db upgrade
    flask seed all
    flask run
  6. To run the React App in development, checkout the README inside the react-app directory.