File: README.md

package info (click to toggle)
strawberry-graphql-django 0.67.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,988 kB
  • sloc: python: 27,682; sh: 20; makefile: 20
file content (19 lines) | stat: -rw-r--r-- 402 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Quick start

Install poetry

```shell
pip install poetry
```

Install project dependencies, run migrations, load test data and start development server.

```shell
cd examples/django
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.