├── .gitignore ├── LICENSE ├── README ├── app.py ├── example.py └── settings.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1xch/flask-celery-example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1xch/flask-celery-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1xch/flask-celery-example/HEAD/README -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1xch/flask-celery-example/HEAD/app.py -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1xch/flask-celery-example/HEAD/example.py -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1xch/flask-celery-example/HEAD/settings.py --------------------------------------------------------------------------------