From f1c53656bc3fabcea341d0ef71363edc2ad34511 Mon Sep 17 00:00:00 2001 From: Martin Blech Date: Mon, 1 Dec 2014 21:09:28 -0300 Subject: [PATCH] Replaced `yourapp` with `repo_name` template var. No need to ask the user to replace it by hand, cookiecutter can do it for them. --- {{cookiecutter.repo_name}}/README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/{{cookiecutter.repo_name}}/README.rst b/{{cookiecutter.repo_name}}/README.rst index e10c9b75..1bb9b00e 100644 --- a/{{cookiecutter.repo_name}}/README.rst +++ b/{{cookiecutter.repo_name}}/README.rst @@ -50,9 +50,9 @@ 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/ -You can now run the usual Django ``runserver`` command (replace ``yourapp`` with the name of the directory containing the Django project):: +You can now run the usual Django ``runserver`` command:: - $ python yourapp/manage.py runserver + $ python {{cookiecutter.repo_name}}/manage.py runserver The base app will run but you'll need to carry out a few steps to make the sign-up and login forms work. These are currently detailed in `issue #39`_.