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.txtStart by removing existent database (if any).
rm sqlite/star_wars.db
rm migrations -rfCreate the new database.
flask db init
flask db migrate
flask db upgradeflask runYou can find a Insomnia file in '''insomnia/insomnia.json''' for testing the API.