lostplaces-backend/Pipfile

37 lines
1016 B
TOML
Raw Normal View History

[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
pylint = "*"
2020-09-03 20:06:06 +02:00
coverage = "*"
2020-09-09 22:53:22 +02:00
autopep8 = "*"
pipenv = "*"
2020-09-10 21:51:03 +02:00
wheel = "*"
2020-09-10 23:07:51 +02:00
twine = "*"
2020-09-17 17:06:44 +02:00
pandoc = "*"
pylint-django = "*"
setuptools = "*"
2021-10-02 01:30:44 +02:00
django-nose = "*"
2021-12-31 23:27:06 +01:00
invoke = "*"
[packages]
django = "*"
2020-08-03 19:14:13 +02:00
easy-thumbnails = "*"
2020-07-29 11:18:57 +02:00
image = "*"
2020-08-03 17:29:25 +02:00
django-widget-tweaks = "*"
2020-08-27 17:00:41 +02:00
django-taggit = "*"
2020-09-11 23:07:19 +02:00
[scripts]
test = "django_lostplaces/manage.py test lostplaces"
server = "django_lostplaces/manage.py runserver --ipv6"
dbshell = "django_lostplaces/manage.py dbshell"
showmigrations = "django_lostplaces/manage.py showmigrations"
2021-07-16 13:08:42 +02:00
makemigrations = "django_lostplaces/manage.py makemigrations --no-input"
2021-10-01 09:40:53 +02:00
migrate = "django_lostplaces/manage.py migrate"
build = "django_lostplaces/setup.py bdist_wheel --universal"
2021-12-31 23:27:06 +01:00
createsuperuser = "django_lostplaces/manage.py createsuperuser --noinput --username admin --email admin@example.org"
createsuperuser_prompt = "django_lostplaces/manage.py createsuperuser"
quickstart = "invoke quickstart"
security = "pipenv check"