You will need Python3 installed in your system.
Review and modify configurations in ./.env
if you like.
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
Start by removing existent database (if any).
rm sqlite/star_wars.db
rm migrations -rf
Create the new database.
flask db init
flask db migrate
flask db upgrade
flask run
You can find a Insomnia file in '''insomnia/insomnia.json''' for testing the API.