From 6ba3f02b9a304614b89aa3ff61f24828ff936b1e Mon Sep 17 00:00:00 2001 From: Mike Date: Fri, 2 Oct 2015 10:47:11 -0400 Subject: [PATCH] Update v2 db setup instructions to use local config Trying to set up a local instance, I ran into some minor trouble trying to import the v2 since the README's command to open a python shell wasn't passing in the settings config file flag, resulting in the v2 db import script trying to hit a postgres instance instead of the sqlite file. This just adds that flag to the README. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3fcf6f68..897b3038 100755 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ $ make wipe_db To build out the data you'll need to jump into the Django shell ``` -$ python manage.py shell +$ python manage.py shell --settings=config.local ``` and run the build script with ```