This repository contains the code used in the Python Flask Authentication video uploaded on my YouTube channel.
If on python 3.10 plus the following commands may be needed to create/recreate the database file.
export FLASK_APP=app
flask shell # this instead of python3 (python shell)
from app import db,app
db.drop_all()
db.create_all()
Use the package manager pip to install the required dependencies
pip install -r requirements.txt pip3 install -r requirements.txtpython app.pypython3 app.py