├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app ├── __init__.py └── tasks │ ├── __init__.py │ └── test.py ├── celeryconfig.py ├── config.py ├── configs ├── conf.d │ ├── celerybeatd.conf │ ├── celeryd.conf │ └── redisd.conf └── supervisord.conf ├── manage.py ├── requirements.txt └── scripts ├── install_redis.sh ├── setup_server_before_docker_build.sh └── startup └── ubuntu_docker_setup.sh /.gitignore: -------------------------------------------------------------------------------- 1 | redis*/ 2 | celerybeat-schedule 3 | **/*.pyc 4 | .DS_Store -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeng/celery-scheduler/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeng/celery-scheduler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeng/celery-scheduler/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeng/celery-scheduler/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tasks/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeng/celery-scheduler/HEAD/app/tasks/test.py -------------------------------------------------------------------------------- /celeryconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeng/celery-scheduler/HEAD/celeryconfig.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeng/celery-scheduler/HEAD/config.py -------------------------------------------------------------------------------- /configs/conf.d/celerybeatd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeng/celery-scheduler/HEAD/configs/conf.d/celerybeatd.conf -------------------------------------------------------------------------------- /configs/conf.d/celeryd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeng/celery-scheduler/HEAD/configs/conf.d/celeryd.conf -------------------------------------------------------------------------------- /configs/conf.d/redisd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeng/celery-scheduler/HEAD/configs/conf.d/redisd.conf -------------------------------------------------------------------------------- /configs/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeng/celery-scheduler/HEAD/configs/supervisord.conf -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeng/celery-scheduler/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeng/celery-scheduler/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/install_redis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeng/celery-scheduler/HEAD/scripts/install_redis.sh -------------------------------------------------------------------------------- /scripts/setup_server_before_docker_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeng/celery-scheduler/HEAD/scripts/setup_server_before_docker_build.sh -------------------------------------------------------------------------------- /scripts/startup/ubuntu_docker_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeng/celery-scheduler/HEAD/scripts/startup/ubuntu_docker_setup.sh --------------------------------------------------------------------------------