├── .gitignore ├── .travis.yml ├── MANIFEST.in ├── README.md ├── UNLICENSE ├── assets └── postgresify.jpg ├── postgresify.py ├── requirements.txt ├── setup.py └── tests.py /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | *.egg-info 3 | build 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-heroku-postgresify/HEAD/.travis.yml -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-heroku-postgresify/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-heroku-postgresify/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-heroku-postgresify/HEAD/UNLICENSE -------------------------------------------------------------------------------- /assets/postgresify.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-heroku-postgresify/HEAD/assets/postgresify.jpg -------------------------------------------------------------------------------- /postgresify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-heroku-postgresify/HEAD/postgresify.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | nose==1.1.2 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-heroku-postgresify/HEAD/setup.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-heroku-postgresify/HEAD/tests.py --------------------------------------------------------------------------------