-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipfile
More file actions
32 lines (29 loc) · 844 Bytes
/
Pipfile
File metadata and controls
32 lines (29 loc) · 844 Bytes
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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
django-filter = "==22.1"
django = "==4.1.3"
djangorestframework = "==3.14.0"
djangorestframework-simplejwt = "5.2.2"
drf-spectacular = "==0.24.2"
django-cors-headers = "==3.13.0"
mysqlclient = "2.1.1"
python-dotenv = "*"
pipenv = "*"
django-grpc = "*"
grpcio = "*"
grpcio-tools = "*"
dotted = "*"
[dev-packages]
pylint = "*"
autopep8 = "*"
[scripts]
install = "bash -c 'pipenv install --dev && pipenv clean'"
runserver = "python manage.py runserver"
inspectdb = "python manage.py inspectdb"
makemigrations = "python manage.py makemigrations"
migrate = "python manage.py migrate"
autopep8 = "autopep8 app authentication project --recursive --max-line-length 120 --in-place -a --exclude __pycache__/"
grpcserver = "python manage.py grpcserver --autoreload"