diff --git a/docs/developing-locally.rst b/docs/developing-locally.rst index 3be7940d..b45883d1 100644 --- a/docs/developing-locally.rst +++ b/docs/developing-locally.rst @@ -23,10 +23,17 @@ Then, create a PostgreSQL database with the following command, where `[repo_name $ createdb [repo_name] -You can now run the usual Django ``migrate`` and ``runserver`` command:: +`cookiecutter-django` uses the excellent `django-environ`_ package with its ``DATABASE_URL`` environment variable to simplify database configuration in your Django settings. Now all you have to do is compose a definition for ``DATABASE_URL``: + +.. parsed-literal:: + + $ export DATABASE_URL="postgres://**:**\ @127.0.0.1:\ **/**" + +.. _django-environ: http://django-environ.readthedocs.org + +You can now run the usual Django ``migrate`` and ``runserver`` commands:: $ python manage.py migrate - $ python manage.py runserver **Setup your email backend**