-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
49 lines (45 loc) · 1.3 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
appdirs = "==1.4.4"
certifi = "==2020.12.5"
distlib = "==0.3.1"
dj-database-url = "==0.5.0"
filelock = "==3.0.12"
gunicorn = "==20.1.0"
pipenv = "==2020.11.15"
psycopg2-binary = "==2.8.6"
pytz = "==2021.1"
six = "==1.16.0"
sqlparse = "==0.4.1"
virtualenv = "==20.4.6"
virtualenv-clone = "==0.5.4"
whitenoise = "==5.2.0"
Django = "==2.2.7"
django-extensions = "==3.1.3"
django-crispy-forms = "==1.11.2"
djangorestframework = "==3.12.4"
openpyxl = "*"
markdown = "*"
django-filter = "==2.4.0"
django-dbml = "*"
pydotplus = "*"
django-widget-tweaks = "==1.4.8"
python-memcached = "==1.59"
Pillow = "*"
[dev-packages]
autopep8 = "*"
[scripts]
s ="python manage.py runserver"
rmdb = "bash -c 'rm -rf db.sqlite3 app/migrations/000* blog/migrations/000* chat/migrations/000*'"
mkm = "bash -c 'python manage.py makemigrations; python manage.py migrate'"
loaddb = "bash -c 'python manage.py loaddb; python manage.py loadpoint;python manage.py createsuperuser;python manage.py loadmember;python manage.py runserver'"
loadpoint = "python manage.py loadpoint"
loadmember = "python manage.py loadmember"
m = "python manage.py migrate"
mk = "python manage.py makemigrations "
super = "python manage.py createsuperuser"
[requires]
python_version = "3.9"