mirror of
https://github.com/Hopiu/cookiecutter-django.git
synced 2026-05-11 14:13:10 +00:00
* Introduce development-time Celery services Closes #1225. * Re-order django and postgres services in production.yml * Switch local service extension tactics * Fix celery services inheriting ports from the django's
7 lines
119 B
Bash
7 lines
119 B
Bash
#!/bin/sh
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o xtrace
|
|
|
|
celery -A {{cookiecutter.project_slug}}.taskapp worker -l INFO
|