A simple CRUD app to manage tasks built with FastAPI
Create and activiate virtual environment
$ python3 -m venv venv
$ source venv/bin/activate
$ export PYTHONPATH=$PWD
Install the dependencies required to run the app
(venv)$ pip3 install -r requirements.txt
Run the app
(venv)$ python3 app/main.py