From 98243b2b53f77aca569e50b8d7936f4ae01148d5 Mon Sep 17 00:00:00 2001 From: David Baumgold Date: Fri, 3 May 2013 10:55:28 -0400 Subject: [PATCH] Document django-admin[update_templates] step --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 05f1eff406..2c4d76f8fd 100644 --- a/README.md +++ b/README.md @@ -99,11 +99,13 @@ We use [`rake`](http://rake.rubyforge.org/) to execute common tasks in our project. The `rake` tasks are defined in the `rakefile`, or you can run `rake -T` to view a summary. -Before you run your project, you need to create a sqlite database and create -tables in that database. Fortunately, `rake` will do it for you! Just run: +Before you run your project, you need to create a sqlite database, create +tables in that database, run database migrations, and populate templates for +CMS templates. Fortunately, `rake` will do all of this for you! Just run: $ rake django-admin[syncdb] $ rake django-admin[migrate] + $ rake django-admin[update_templates] If you are running these commands using the [`zsh`](http://www.zsh.org/) shell, zsh will assume that you are doing