mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-23 10:04:01 +03:00
de5504f414
Closes #1788
This PR preps for the upcoming `django-storages` 2.X:
1. ~~Explicitly set default ACL to None which was [incorrectly set](3f6ec74942/storages/backends/s3boto3.py (L195)
) to `public-read` by `django-storages`~~
2. Renamed `StaticRootS3BotoStorage` to `StaticRootS3Boto3Storage` to avoid confusion. This is to prep for the upcoming `S3Boto` class deprecation.
See also:
https://django-storages.readthedocs.io/en/latest/backends/amazon-S3.html#settings
https://github.com/jschneier/django-storages/blob/master/CHANGELOG.rst
17 lines
697 B
Plaintext
17 lines
697 B
Plaintext
# PRECAUTION: avoid production dependencies that aren't in development
|
|
|
|
-r ./base.txt
|
|
|
|
gunicorn==19.8.1 # https://github.com/benoitc/gunicorn
|
|
psycopg2==2.7.4 --no-binary psycopg2 # https://github.com/psycopg/psycopg2
|
|
{%- if cookiecutter.use_whitenoise == 'n' %}
|
|
Collectfast==0.6.2 # https://github.com/antonagestam/collectfast
|
|
{%- endif %}
|
|
{%- if cookiecutter.use_sentry == "y" %}
|
|
raven==6.9.0 # https://github.com/getsentry/raven-python
|
|
{%- endif %}
|
|
|
|
# Django
|
|
# ------------------------------------------------------------------------------
|
|
django-storages[boto3]==1.7.1 # https://github.com/jschneier/django-storages
|
|
django-anymail[mailgun]==4.2 # https://github.com/anymail/django-anymail |