├── .github └── workflows │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── django_production ├── __init__.py ├── __main__.py └── settings.py ├── pyproject.toml ├── pytest.ini └── tests ├── __init__.py └── test_patch.py /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lincolnloop/django-production/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lincolnloop/django-production/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lincolnloop/django-production/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lincolnloop/django-production/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lincolnloop/django-production/HEAD/README.md -------------------------------------------------------------------------------- /django_production/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lincolnloop/django-production/HEAD/django_production/__init__.py -------------------------------------------------------------------------------- /django_production/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lincolnloop/django-production/HEAD/django_production/__main__.py -------------------------------------------------------------------------------- /django_production/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lincolnloop/django-production/HEAD/django_production/settings.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lincolnloop/django-production/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lincolnloop/django-production/HEAD/pytest.ini -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lincolnloop/django-production/HEAD/tests/test_patch.py --------------------------------------------------------------------------------