├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── requirements.txt ├── run-redis.sh └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-celery-example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-celery-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-celery-example/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-celery-example/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-celery-example/HEAD/requirements.txt -------------------------------------------------------------------------------- /run-redis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-celery-example/HEAD/run-redis.sh -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-celery-example/HEAD/templates/index.html --------------------------------------------------------------------------------