├── .gitignore ├── LICENSE ├── README.rst ├── django_postgres_readonly ├── __init__.py └── base.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | dist 3 | django_postgres_readonly.egg-info 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opbeat/django-postgres-readonly/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opbeat/django-postgres-readonly/HEAD/README.rst -------------------------------------------------------------------------------- /django_postgres_readonly/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_postgres_readonly/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opbeat/django-postgres-readonly/HEAD/django_postgres_readonly/base.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opbeat/django-postgres-readonly/HEAD/setup.py --------------------------------------------------------------------------------