Skip to content
This repository has been archived by the owner on Mar 15, 2023. It is now read-only.

Latest commit

 

History

History
30 lines (17 loc) · 570 Bytes

README.md

File metadata and controls

30 lines (17 loc) · 570 Bytes

Celery demo with Django

中文版

This is a naive demo that Django integrate with Celery as following.

Run

You should first run a local Redis instance at default port 6379.

$ git clone https://github.com/counter2015/celeryDemo.git

# init python venv and download packages
$ bin/venv_init.sh

# mkdir for pid and logs storage, migrate database
$ bin/deploy.sh

# this will start server at http://localhost:8011
$ bin/run.sh

# you can stop server by this command
$ bin/stop.sh