├── .gitignore ├── LICENSE ├── README.md ├── docker-compose.yml └── project ├── Dockerfile ├── celerybeat-schedule ├── core ├── __init__.py ├── asgi.py ├── celery.py ├── settings.py ├── tasks.py ├── urls.py └── wsgi.py ├── entrypoint.sh ├── manage.py ├── orders ├── __init__.py ├── admin.py ├── apps.py ├── management │ └── commands │ │ ├── email_report.py │ │ └── my_custom_command.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── products.json ├── requirements.txt └── templates └── orders └── order_list.html /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ 3 | env 4 | *.sqlite3 5 | .DS_Store 6 | staticfiles 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-celery-beat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-celery-beat/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-celery-beat/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /project/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-celery-beat/HEAD/project/Dockerfile -------------------------------------------------------------------------------- /project/celerybeat-schedule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-celery-beat/HEAD/project/celerybeat-schedule -------------------------------------------------------------------------------- /project/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-celery-beat/HEAD/project/core/__init__.py -------------------------------------------------------------------------------- /project/core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-celery-beat/HEAD/project/core/asgi.py -------------------------------------------------------------------------------- /project/core/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-celery-beat/HEAD/project/core/celery.py -------------------------------------------------------------------------------- /project/core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-celery-beat/HEAD/project/core/settings.py -------------------------------------------------------------------------------- /project/core/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-celery-beat/HEAD/project/core/tasks.py -------------------------------------------------------------------------------- /project/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-celery-beat/HEAD/project/core/urls.py -------------------------------------------------------------------------------- /project/core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-celery-beat/HEAD/project/core/wsgi.py -------------------------------------------------------------------------------- /project/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-celery-beat/HEAD/project/entrypoint.sh -------------------------------------------------------------------------------- /project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-celery-beat/HEAD/project/manage.py -------------------------------------------------------------------------------- /project/orders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/orders/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-celery-beat/HEAD/project/orders/admin.py -------------------------------------------------------------------------------- /project/orders/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-celery-beat/HEAD/project/orders/apps.py -------------------------------------------------------------------------------- /project/orders/management/commands/email_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-celery-beat/HEAD/project/orders/management/commands/email_report.py -------------------------------------------------------------------------------- /project/orders/management/commands/my_custom_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-celery-beat/HEAD/project/orders/management/commands/my_custom_command.py -------------------------------------------------------------------------------- /project/orders/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-celery-beat/HEAD/project/orders/migrations/0001_initial.py -------------------------------------------------------------------------------- /project/orders/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/orders/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-celery-beat/HEAD/project/orders/models.py -------------------------------------------------------------------------------- /project/orders/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-celery-beat/HEAD/project/orders/tests.py -------------------------------------------------------------------------------- /project/orders/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-celery-beat/HEAD/project/orders/urls.py -------------------------------------------------------------------------------- /project/orders/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-celery-beat/HEAD/project/orders/views.py -------------------------------------------------------------------------------- /project/products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-celery-beat/HEAD/project/products.json -------------------------------------------------------------------------------- /project/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-celery-beat/HEAD/project/requirements.txt -------------------------------------------------------------------------------- /project/templates/orders/order_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-celery-beat/HEAD/project/templates/orders/order_list.html --------------------------------------------------------------------------------