- Run
docker compose up --build
-
Create a virtual environment:
python3 -m venv env
-
Activate the virtual environment:
source env/bin/activate
-
Install dependencies:
pip install -r requirements.txt
-
Run:
python manage.py runserver
-
Go to localhost:8000/graphql
-
Type your graphQL query:
query { allIngredients { id name } }