This website requires JavaScript.
Explore
Help
Register
Sign In
cookiecutter
/
cookiecutter-django
Watch
1
Star
1
Fork
0
You've already forked cookiecutter-django
mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced
2024-11-11 20:28:01 +03:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
b22045bcd4
cookiecutter-django
/
{{cookiecutter.project_slug}}
/
compose
/
local
/
django
/
celery
/
worker
/
start
8 lines
88 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Replaced base Docker image with debian:buster-slim (#2373) Using system Python 3 distribution (3.7.3) in order to allow the use of Debian packages for numpy, scipy, etc. without the need of building them or installing build dependencies. Changed `#!/bin/sh` in shell scripts to `#!/bin/bash` to make `set -o pipefail` work.
2020-01-07 14:06:31 +03:00
#!/bin/bash
Commit local django celery start scripts back
2018-05-21 15:34:28 +03:00
set -o errexit
set -o nounset
Refactor Celery integration according to current best practices - Change celery app to not be a Django app, more like a WSGI app - Define a Celery task in the Django users app - Write a test to execute the task - Update scripts to use the new app to start workers - Update documentation Fix #865
2019-04-02 17:26:55 +03:00
celery -A config.celery_app worker -l INFO
Reference in New Issue
Copy Permalink