forked from dvndrsn/graphql-python-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
37 lines (31 loc) · 749 Bytes
/
Pipfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[requires]
python_version = "3.7"
[packages]
graphene = "*"
Django = "*"
graphene-django = "*"
django-cors-headers = "*"
django-rest-framework = "*"
graphql-core = "*"
django-extensions = "*"
invoke = "*"
[dev-packages]
pylint = "*"
pylint-django = "*"
ipdb = "*"
mypy = "*"
django-stubs = "*"
factory-boy = "*"
[scripts]
migrate_db = "python manage.py migrate"
setup_seed = "python manage.py loaddata story/fixture.json"
setup_superuser = "python manage.py createsuperuser"
check_style = "pylint api story cyoa"
check_types = "mypy api story cyoa"
test = "python manage.py test"
start = "python manage.py runserver"
django_shell = "python manage.py shell_plus"