mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-10 19:57:09 +03:00
Added an explanation of how to define the DATABASE_URL environment variable.
This commit is contained in:
parent
8f03fc443b
commit
57aed057cc
|
@ -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://*<pg_user_name>*:*<pg_user_password>*\ @127.0.0.1:\ *<pg_port>*/*<pg_database_name>*"
|
||||
|
||||
.. _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**
|
||||
|
|
Loading…
Reference in New Issue
Block a user