dj-database-url/README.rst

24 lines
446 B
ReStructuredText
Raw Normal View History

2012-04-30 17:25:03 +00:00
DJ-Database-URL
~~~~~~~~~~~~~~
This simple Django utility allows you to utilize the
`12factor <http://www.12factor.net/backing-services>`_ inspired
2012-04-30 17:37:58 +00:00
``DATABASE_URL`` environment variable to configure your Django application.
2012-04-30 17:25:03 +00:00
Usage
-----
2012-04-30 17:37:58 +00:00
Configure your database in ``settings.py``::
2012-04-30 17:25:03 +00:00
DATABASES = dj_database_url.config(DATABASES)
Nice and simple.
2012-04-30 17:37:58 +00:00
2012-04-30 17:25:03 +00:00
Installation
------------
2012-04-30 17:39:32 +00:00
Installation is simple too::
2012-04-30 17:25:03 +00:00
$ pip install dj-database-url