Chore Tracker Freestyle Project OPAN-244
Create and activate a virtual environment:
conda create -n freestyle-project-env python=3.10
conda activate freestyle-project-envCreate a ".env" file and paste in the following contents:
# this is the ".env" file...
SECRET_KEY = "example_secret_key"
Install Packages:
pip install -r requirements.txtRun the example script:
python app/login.py
python app/choreFileReader.pyFile setup for choreFileReader.py:
Run tests:
pytestRun the web app (then view in the browser at http://localhost:5000/):
FLASK_APP=web_app flask run