├── .codecov.yml ├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── crontask ├── __init__.py ├── conf.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── crontask.py ├── tasks.py └── utils.py ├── images ├── logo-dark.svg └── logo-light.svg ├── pyproject.toml └── tests ├── __init__.py ├── conftest.py ├── test_commands.py ├── test_tasks.py ├── test_utils.py └── testapp ├── __init__.py ├── settings.py ├── tasks.py └── urls.py /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiio/dramatiq-crontab/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiio/dramatiq-crontab/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiio/dramatiq-crontab/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiio/dramatiq-crontab/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiio/dramatiq-crontab/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiio/dramatiq-crontab/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiio/dramatiq-crontab/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiio/dramatiq-crontab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiio/dramatiq-crontab/HEAD/README.md -------------------------------------------------------------------------------- /crontask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiio/dramatiq-crontab/HEAD/crontask/__init__.py -------------------------------------------------------------------------------- /crontask/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiio/dramatiq-crontab/HEAD/crontask/conf.py -------------------------------------------------------------------------------- /crontask/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crontask/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crontask/management/commands/crontask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiio/dramatiq-crontab/HEAD/crontask/management/commands/crontask.py -------------------------------------------------------------------------------- /crontask/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiio/dramatiq-crontab/HEAD/crontask/tasks.py -------------------------------------------------------------------------------- /crontask/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiio/dramatiq-crontab/HEAD/crontask/utils.py -------------------------------------------------------------------------------- /images/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiio/dramatiq-crontab/HEAD/images/logo-dark.svg -------------------------------------------------------------------------------- /images/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiio/dramatiq-crontab/HEAD/images/logo-light.svg -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiio/dramatiq-crontab/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiio/dramatiq-crontab/HEAD/tests/test_commands.py -------------------------------------------------------------------------------- /tests/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiio/dramatiq-crontab/HEAD/tests/test_tasks.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiio/dramatiq-crontab/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testapp/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiio/dramatiq-crontab/HEAD/tests/testapp/settings.py -------------------------------------------------------------------------------- /tests/testapp/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiio/dramatiq-crontab/HEAD/tests/testapp/tasks.py -------------------------------------------------------------------------------- /tests/testapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiio/dramatiq-crontab/HEAD/tests/testapp/urls.py --------------------------------------------------------------------------------