Personal Info Manager
A web app with React frontend and Flask backend which allows the user to organize and record informations.
- Clone this repo.
- Create a python virtual env and activate it
python3 -m venv newenv
. /path-to-newenv/bin/activate
- Install dependencies
pip install -r requirements.txt
npm install
- Create a postgres database and set up the environment variable
export DATABASE_URL=databaseURL
- Initialise database
export FLASK_APP=notes
flask initdb
- Run the application
flask run
npm start