diff options
author | 2019-04-20 14:41:40 +0200 | |
---|---|---|
committer | 2019-04-20 14:41:40 +0200 | |
commit | 14f8ca26b85f7cc3e009fb9ba2ac549e751c8068 (patch) | |
tree | 041b093b2c9296fe23eb6e1bb54d0748fbe58dfa /Pipfile | |
parent | Revert linter to non-verbose. (diff) | |
parent | Make the flakes happy. (diff) |
Merge pull request #213 from python-discord/django_front_page
Django front page
Diffstat (limited to 'Pipfile')
-rw-r--r-- | Pipfile | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -5,7 +5,7 @@ verify_ssl = true [dev-packages] flake8 = "~=3.7.7" -flake8-bandit = "~=2.1.0" +flake8-bandit = "==1.0.2" flake8-bugbear = "~=19.3.0" flake8-import-order = "~=0.18.1" flake8-string-format = "~=0.2.3" @@ -26,6 +26,12 @@ djangorestframework-bulk = "~=0.2.1" psycopg2-binary = "~=2.8" django-simple-bulma = ">=1.1.6,<2.0" django-crispy-bulma = ">=0.1.2,<2.0" +requests = "~=2.21" [requires] python_version = "3.7" + +[scripts] +makemigrations = "python manage.py makemigrations" +django_shell = "python manage.py shell" +test = "python manage.py test" |