mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-08-08 14:04:52 +03:00
Merge branch 'master' into prettify-generated-project-requirements
This commit is contained in:
commit
099afc706d
|
@ -16,7 +16,7 @@ Fábio C. Barrionuevo da Luz `@luzfcb`_ @luzfcb
|
|||
Saurabh Kumar `@theskumar`_ @_theskumar
|
||||
Jannis Gebauer `@jayfk`_
|
||||
Burhan Khalid `@burhan`_ @burhan
|
||||
Shupeyko Nikita `@webyneter`_ @webyneter
|
||||
Nikita Shupeyko `@webyneter`_ @webyneter
|
||||
Bruno Alla `@browniebroke`_ @_BrunoAlla
|
||||
=========================== ================ ===========
|
||||
|
||||
|
|
|
@ -30,7 +30,11 @@ DJANGO_ACCOUNT_ALLOW_REGISTRATION=True
|
|||
# django-compressor
|
||||
# ------------------------------------------------------------------------------
|
||||
COMPRESS_ENABLED=
|
||||
{% endif %}{% if cookiecutter.use_sentry_for_error_reporting == 'y' %}
|
||||
{% endif %}
|
||||
# Gunicorn
|
||||
# ------------------------------------------------------------------------------
|
||||
WEB_CONCURRENCY=4
|
||||
{% if cookiecutter.use_sentry_for_error_reporting == 'y' %}
|
||||
# Sentry
|
||||
# ------------------------------------------------------------------------------
|
||||
DJANGO_SENTRY_DSN=
|
||||
|
|
|
@ -11,7 +11,9 @@ RUN apk update \
|
|||
# CFFI dependencies
|
||||
&& apk add libffi-dev openssl-dev py-cffi \
|
||||
# Translations dependencies
|
||||
&& apk add gettext
|
||||
&& apk add gettext \
|
||||
# https://docs.djangoproject.com/en/2.0/ref/django-admin/#dbshell
|
||||
&& apk add postgresql-client
|
||||
|
||||
# Requirements have to be pulled and installed here, otherwise caching won't work
|
||||
COPY ./requirements /requirements
|
||||
|
|
|
@ -18,4 +18,4 @@ opbeat==3.6.1 # https://github.com/opbeat/opbeat_python
|
|||
# Django
|
||||
# ------------------------------------------------------------------------------
|
||||
django-storages==1.6.5 # https://github.com/jschneier/django-storages
|
||||
django-anymail==1.4 # https://github.com/anymail/django-anymail
|
||||
django-anymail==2.0 # https://github.com/anymail/django-anymail
|
||||
|
|
Loading…
Reference in New Issue
Block a user