Install poetry
pip install poetry
Install project dependencies, run migrations, load test data and start development server.
poetry install
poetry run ./manage.py migrate
poetry run ./manage.py loaddata berries
poetry run ./manage.py runserver
After that you have web server and graphql endpoint running at http://127.0.0.1:8000/graphql.