Skip to content

Files

Latest commit

 

History

History
 
 

django

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Quick start

Install poetry

pip install poetry

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

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.