Create a Python3 virtual environment, and activate it:
python3 -m venv <env_name>
source <env_name>/bin/activate
Then, install dependencies:
pip3 install -r requirements.txt
Setup a sqlite database:
$ cd src
$ python3 manage.py makemigrations recipemanager
$ python3 manage.py migrate
After completing the installation, just run the application:
$ python3 manage.py runserver
Access the recipe manager at http://127.0.0.1:8000/manager/