This repository will contain the backend logic of the Clear My Record tool being developed by UMKC and Code For Kansas City. This is the sibling component to the Clear My Record Frontend.
To be determined.
Make a python virtual environment
install requirements
pip install -r requirements.txt
Export the following in your shell:
export FLASK_APP=cmr_app.py
export FLASK_DEBUG=1
Then, making sure you are inside the project directory:
Run schema and data migrations (if applicable):
flask db upgrade
To run the application:
flask run
To be determined.