├── .gitignore ├── .python-version ├── README.md ├── app.py ├── celery_app ├── __init__.py ├── __init__.pyc ├── celeryconfig.py ├── celeryconfig.pyc ├── task1.py ├── task1.pyc ├── task2.py └── task2.pyc ├── celerybeat-schedule.db ├── imooc ├── celerybeat-schedule.db ├── celerybeat.pid ├── conf │ ├── supervisor_celery_beat.ini │ ├── supervisor_celery_flower.ini │ ├── supervisor_celery_worker.ini │ └── supervisord.conf ├── course │ ├── __init__.py │ ├── __init__.pyc │ ├── admin.py │ ├── admin.pyc │ ├── migrations │ │ ├── __init__.py │ │ └── __init__.pyc │ ├── models.py │ ├── models.pyc │ ├── tasks.py │ ├── tasks.pyc │ ├── tests.py │ ├── views.py │ └── views.pyc ├── db.sqlite3 ├── imooc │ ├── __init__.py │ ├── __init__.pyc │ ├── celeryconfig.py │ ├── celeryconfig.pyc │ ├── settings.py │ ├── settings.pyc │ ├── urls.py │ ├── urls.pyc │ ├── wsgi.py │ └── wsgi.pyc ├── logs │ ├── celery.beat.log │ ├── celery.flower.log │ └── celery.worker.log ├── manage.py └── manage.pyc └── tasks.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 2.7.4 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/app.py -------------------------------------------------------------------------------- /celery_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/celery_app/__init__.py -------------------------------------------------------------------------------- /celery_app/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/celery_app/__init__.pyc -------------------------------------------------------------------------------- /celery_app/celeryconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/celery_app/celeryconfig.py -------------------------------------------------------------------------------- /celery_app/celeryconfig.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/celery_app/celeryconfig.pyc -------------------------------------------------------------------------------- /celery_app/task1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/celery_app/task1.py -------------------------------------------------------------------------------- /celery_app/task1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/celery_app/task1.pyc -------------------------------------------------------------------------------- /celery_app/task2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/celery_app/task2.py -------------------------------------------------------------------------------- /celery_app/task2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/celery_app/task2.pyc -------------------------------------------------------------------------------- /celerybeat-schedule.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/celerybeat-schedule.db -------------------------------------------------------------------------------- /imooc/celerybeat-schedule.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/celerybeat-schedule.db -------------------------------------------------------------------------------- /imooc/celerybeat.pid: -------------------------------------------------------------------------------- 1 | 78285 2 | -------------------------------------------------------------------------------- /imooc/conf/supervisor_celery_beat.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/conf/supervisor_celery_beat.ini -------------------------------------------------------------------------------- /imooc/conf/supervisor_celery_flower.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/conf/supervisor_celery_flower.ini -------------------------------------------------------------------------------- /imooc/conf/supervisor_celery_worker.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/conf/supervisor_celery_worker.ini -------------------------------------------------------------------------------- /imooc/conf/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/conf/supervisord.conf -------------------------------------------------------------------------------- /imooc/course/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imooc/course/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/course/__init__.pyc -------------------------------------------------------------------------------- /imooc/course/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/course/admin.py -------------------------------------------------------------------------------- /imooc/course/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/course/admin.pyc -------------------------------------------------------------------------------- /imooc/course/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imooc/course/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/course/migrations/__init__.pyc -------------------------------------------------------------------------------- /imooc/course/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/course/models.py -------------------------------------------------------------------------------- /imooc/course/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/course/models.pyc -------------------------------------------------------------------------------- /imooc/course/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/course/tasks.py -------------------------------------------------------------------------------- /imooc/course/tasks.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/course/tasks.pyc -------------------------------------------------------------------------------- /imooc/course/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/course/tests.py -------------------------------------------------------------------------------- /imooc/course/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/course/views.py -------------------------------------------------------------------------------- /imooc/course/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/course/views.pyc -------------------------------------------------------------------------------- /imooc/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/db.sqlite3 -------------------------------------------------------------------------------- /imooc/imooc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imooc/imooc/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/imooc/__init__.pyc -------------------------------------------------------------------------------- /imooc/imooc/celeryconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/imooc/celeryconfig.py -------------------------------------------------------------------------------- /imooc/imooc/celeryconfig.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/imooc/celeryconfig.pyc -------------------------------------------------------------------------------- /imooc/imooc/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/imooc/settings.py -------------------------------------------------------------------------------- /imooc/imooc/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/imooc/settings.pyc -------------------------------------------------------------------------------- /imooc/imooc/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/imooc/urls.py -------------------------------------------------------------------------------- /imooc/imooc/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/imooc/urls.pyc -------------------------------------------------------------------------------- /imooc/imooc/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/imooc/wsgi.py -------------------------------------------------------------------------------- /imooc/imooc/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/imooc/wsgi.pyc -------------------------------------------------------------------------------- /imooc/logs/celery.beat.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/logs/celery.beat.log -------------------------------------------------------------------------------- /imooc/logs/celery.flower.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/logs/celery.flower.log -------------------------------------------------------------------------------- /imooc/logs/celery.worker.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/logs/celery.worker.log -------------------------------------------------------------------------------- /imooc/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/manage.py -------------------------------------------------------------------------------- /imooc/manage.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/imooc/manage.pyc -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnych/celery-learning/HEAD/tasks.py --------------------------------------------------------------------------------