https://github.com/wemake-services/django-pre-deploy-checks
Django checks that you should run on application deploy
https://github.com/wemake-services/django-pre-deploy-checks
Last synced: 6 months ago
JSON representation
Django checks that you should run on application deploy
- Host: GitHub
- URL: https://github.com/wemake-services/django-pre-deploy-checks
- Owner: wemake-services
- License: mit
- Created: 2021-02-02T11:58:43.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-01-03T19:48:34.000Z (9 months ago)
- Last Synced: 2025-04-12T09:23:26.423Z (6 months ago)
- Language: Python
- Size: 36.1 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# django-pre-deploy-checks
[](https://github.com/wemake.services/django-pre-deploy-checks/actions?query=workflow%3Atest)
[](https://pypi.org/project/django-pre-deploy-checks/)
[](https://github.com/wemake-services/wemake-python-styleguide)Django checks you should run on application deploy
## Features
- Fully typed with annotations and checked with mypy, [PEP561 compatible](https://www.python.org/dev/peps/pep-0561/)
- Add yours!## Installation
```bash
pip install django-pre-deploy-checks
```## Example
Showcase how your project can be used:
```python
from django_pre_deploy_checks.example import some_functionprint(some_function(3, 4))
# => 7
```## License
[MIT](https://github.com/wemake.services/django-pre-deploy-checks/blob/master/LICENSE)
## Credits
This project was generated with [`wemake-python-package`](https://github.com/wemake-services/wemake-python-package). Current template version is: [0a5189513a1bbee62c791e990ea7258116adf096](https://github.com/wemake-services/wemake-python-package/tree/0a5189513a1bbee62c791e990ea7258116adf096). See what is [updated](https://github.com/wemake-services/wemake-python-package/compare/0a5189513a1bbee62c791e990ea7258116adf096...master) since then.