mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-08-18 10:54: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
|
||||
depends_on:
|
||||
- redis
|
||||
{%- if cookiecutter.database_engine == 'postgresql' %}
|
||||
- postgres
|
||||
{%- endif %}
|
||||
{%- if cookiecutter.database_engine == 'mysql' %}
|
||||
- mysql
|
||||
{%- endif %}
|
||||
{%- if cookiecutter.use_mailhog == 'y' %}
|
||||
- mailhog
|
||||
{%- endif %}
|
||||
|
@ -120,7 +125,12 @@ services:
|
|||
container_name: celerybeat
|
||||
depends_on:
|
||||
- redis
|
||||
{%- if cookiecutter.database_engine == 'postgresql' %}
|
||||
- postgres
|
||||
{%- endif %}
|
||||
{%- if cookiecutter.database_engine == 'mysql' %}
|
||||
- mysql
|
||||
{%- endif %}
|
||||
{%- if cookiecutter.use_mailhog == 'y' %}
|
||||
- mailhog
|
||||
{%- endif %}
|
||||
|
|
Loading…
Reference in New Issue
Block a user