2018-03-09 12:57:32 +03:00
|
|
|
# PRECAUTION: avoid production dependencies that aren't in development
|
2013-08-14 22:01:41 +04:00
|
|
|
|
2020-07-24 19:38:29 +03:00
|
|
|
-r base.txt
|
2015-10-20 02:02:42 +03:00
|
|
|
|
2023-07-19 18:52:09 +03:00
|
|
|
gunicorn==21.2.0 # https://github.com/benoitc/gunicorn
|
2023-06-27 23:40:03 +03:00
|
|
|
psycopg[c]==3.1.9 # https://github.com/psycopg/psycopg
|
2018-03-09 12:57:32 +03:00
|
|
|
{%- if cookiecutter.use_whitenoise == 'n' %}
|
2020-06-06 03:08:27 +03:00
|
|
|
Collectfast==2.2.0 # https://github.com/antonagestam/collectfast
|
2015-04-26 12:57:45 +03:00
|
|
|
{%- endif %}
|
2021-01-18 23:58:00 +03:00
|
|
|
{%- if cookiecutter.use_sentry == "y" %}
|
2023-08-29 19:37:57 +03:00
|
|
|
sentry-sdk==1.30.0 # https://github.com/getsentry/sentry-python
|
2021-01-18 23:58:00 +03:00
|
|
|
{%- endif %}
|
2020-05-01 17:39:30 +03:00
|
|
|
{%- if cookiecutter.use_docker == "n" and cookiecutter.windows == "y" %}
|
2023-05-30 18:05:37 +03:00
|
|
|
hiredis==2.2.3 # https://github.com/redis/hiredis-py
|
2020-04-29 23:42:24 +03:00
|
|
|
{%- endif %}
|
2018-03-09 12:57:32 +03:00
|
|
|
|
|
|
|
# Django
|
|
|
|
# ------------------------------------------------------------------------------
|
2019-04-02 09:13:31 +03:00
|
|
|
{%- if cookiecutter.cloud_provider == 'AWS' %}
|
2023-09-12 14:07:28 +03:00
|
|
|
django-storages[s3]==1.14 # https://github.com/jschneier/django-storages
|
2019-05-19 02:24:29 +03:00
|
|
|
{%- elif cookiecutter.cloud_provider == 'GCP' %}
|
2023-09-12 14:07:28 +03:00
|
|
|
django-storages[google]==1.14 # https://github.com/jschneier/django-storages
|
2022-11-30 21:26:58 +03:00
|
|
|
{%- elif cookiecutter.cloud_provider == 'Azure' %}
|
2023-09-12 14:07:28 +03:00
|
|
|
django-storages[azure]==1.14 # https://github.com/jschneier/django-storages
|
2019-04-02 09:13:31 +03:00
|
|
|
{%- endif %}
|
2020-03-14 20:43:37 +03:00
|
|
|
{%- if cookiecutter.mail_service == 'Mailgun' %}
|
2023-08-02 01:02:09 +03:00
|
|
|
django-anymail[mailgun]==10.1 # https://github.com/anymail/django-anymail
|
2020-03-14 20:43:37 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'Amazon SES' %}
|
2023-08-02 01:02:09 +03:00
|
|
|
django-anymail[amazon-ses]==10.1 # https://github.com/anymail/django-anymail
|
2020-02-07 00:58:15 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'Mailjet' %}
|
2023-08-02 01:02:09 +03:00
|
|
|
django-anymail[mailjet]==10.1 # https://github.com/anymail/django-anymail
|
2020-02-07 00:58:15 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'Mandrill' %}
|
2023-08-02 01:02:09 +03:00
|
|
|
django-anymail[mandrill]==10.1 # https://github.com/anymail/django-anymail
|
2020-02-07 00:58:15 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'Postmark' %}
|
2023-08-02 01:02:09 +03:00
|
|
|
django-anymail[postmark]==10.1 # https://github.com/anymail/django-anymail
|
2020-02-07 00:58:15 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'Sendgrid' %}
|
2023-08-02 01:02:09 +03:00
|
|
|
django-anymail[sendgrid]==10.1 # https://github.com/anymail/django-anymail
|
2020-02-07 00:58:15 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'SendinBlue' %}
|
2023-08-02 01:02:09 +03:00
|
|
|
django-anymail[sendinblue]==10.1 # https://github.com/anymail/django-anymail
|
2020-02-07 00:58:15 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'SparkPost' %}
|
2023-08-02 01:02:09 +03:00
|
|
|
django-anymail[sparkpost]==10.1 # https://github.com/anymail/django-anymail
|
2020-03-14 20:43:37 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'Other SMTP' %}
|
2023-08-02 01:02:09 +03:00
|
|
|
django-anymail==10.1 # https://github.com/anymail/django-anymail
|
2020-02-07 00:58:15 +03:00
|
|
|
{%- endif %}
|