readme notes

This commit is contained in:
Kenneth Reitz 2012-04-30 15:08:20 -04:00
parent e6cf053d94
commit 08c8ffaad8
2 changed files with 5 additions and 3 deletions

View file

@ -9,11 +9,13 @@ This simple Django utility allows you to utilize the
Usage
-----
Configure your database in ``settings.py``::
Configure your database in ``settings.py`` from ``DATABASE_URL``::
DATABASES['default'] = dj_database_url.config()
Nice and simple.
Parse an arbitrary Database URL::
DATABASES['default'] = dj_database_url.parse('postgres://...')
Installation

View file

@ -23,7 +23,7 @@ from setuptools import setup
setup(
name='dj-database-url',
version='0.1.1',
version='0.1.2',
url='https://github.com/kennethreitz/dj-database-url',
license='BSD',
author='Kenneth Reitz',