├── .circleci └── config.yml ├── .editorconfig ├── .git-tidy ├── commit.tpl ├── commit.yaml └── log.tpl ├── .gitcommit.tpl ├── .gitignore ├── .readthedocs.yml ├── CHANGELOG.md ├── CONTRIBUTING.rst ├── LICENSE ├── Makefile ├── README.rst ├── devops.py ├── docker-compose.yml ├── docs ├── Makefile ├── conf.py ├── contributing.rst ├── index.rst ├── installation.rst ├── package.rst ├── release_notes.rst ├── requirements.txt └── toc.rst ├── manage.py ├── pgconnection ├── __init__.py ├── core.py ├── tests │ ├── __init__.py │ └── test_core.py └── version.py ├── poetry.lock ├── pyproject.toml ├── settings.py ├── setup.cfg ├── temple.yaml └── tox.ini /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git-tidy/commit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/.git-tidy/commit.tpl -------------------------------------------------------------------------------- /.git-tidy/commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/.git-tidy/commit.yaml -------------------------------------------------------------------------------- /.git-tidy/log.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/.git-tidy/log.tpl -------------------------------------------------------------------------------- /.gitcommit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/.gitcommit.tpl -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/README.rst -------------------------------------------------------------------------------- /devops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/devops.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/package.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/docs/package.rst -------------------------------------------------------------------------------- /docs/release_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/docs/release_notes.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/toc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/docs/toc.rst -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/manage.py -------------------------------------------------------------------------------- /pgconnection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/pgconnection/__init__.py -------------------------------------------------------------------------------- /pgconnection/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/pgconnection/core.py -------------------------------------------------------------------------------- /pgconnection/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pgconnection/tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/pgconnection/tests/test_core.py -------------------------------------------------------------------------------- /pgconnection/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/pgconnection/version.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/pyproject.toml -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/settings.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/setup.cfg -------------------------------------------------------------------------------- /temple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/temple.yaml -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleykendall/django-pgconnection/HEAD/tox.ini --------------------------------------------------------------------------------