From 5e48e162f72985986dfa2f8169ab88ad0ae51d60 Mon Sep 17 00:00:00 2001 From: Audrey Roy Date: Sun, 28 Jun 2015 14:14:34 -0700 Subject: [PATCH] Add PostgreSQL createdb instructions to generated README. --- {{cookiecutter.repo_name}}/README.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/{{cookiecutter.repo_name}}/README.rst b/{{cookiecutter.repo_name}}/README.rst index 8a70c5e6..f70d6fc0 100644 --- a/{{cookiecutter.repo_name}}/README.rst +++ b/{{cookiecutter.repo_name}}/README.rst @@ -56,6 +56,10 @@ First make sure to create and activate a virtualenv_, then open a terminal at th .. _virtualenv: http://docs.python-guide.org/en/latest/dev/virtualenvs/ +Create a local PostgreSQL database:: + + $ createdb {{ cookiecutter.repo_name }} + You can now run the ``runserver_plus`` command:: $ python manage.py runserver_plus