mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-08-18 19:04:51 +03:00
modified dependencies in local.yml
This commit is contained in:
parent
89e87cbc55
commit
decbcf38fc
|
@ -107,7 +107,12 @@ services:
|
||||||
container_name: celeryworker
|
container_name: celeryworker
|
||||||
depends_on:
|
depends_on:
|
||||||
- redis
|
- redis
|
||||||
|
{%- if cookiecutter.database_engine == 'postgresql' %}
|
||||||
- postgres
|
- postgres
|
||||||
|
{%- endif %}
|
||||||
|
{%- if cookiecutter.database_engine == 'mysql' %}
|
||||||
|
- mysql
|
||||||
|
{%- endif %}
|
||||||
{%- if cookiecutter.use_mailhog == 'y' %}
|
{%- if cookiecutter.use_mailhog == 'y' %}
|
||||||
- mailhog
|
- mailhog
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
@ -120,7 +125,12 @@ services:
|
||||||
container_name: celerybeat
|
container_name: celerybeat
|
||||||
depends_on:
|
depends_on:
|
||||||
- redis
|
- redis
|
||||||
|
{%- if cookiecutter.database_engine == 'postgresql' %}
|
||||||
- postgres
|
- postgres
|
||||||
|
{%- endif %}
|
||||||
|
{%- if cookiecutter.database_engine == 'mysql' %}
|
||||||
|
- mysql
|
||||||
|
{%- endif %}
|
||||||
{%- if cookiecutter.use_mailhog == 'y' %}
|
{%- if cookiecutter.use_mailhog == 'y' %}
|
||||||
- mailhog
|
- mailhog
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user