From 068fc507d3ab3272c7d0b40e7124410599835189 Mon Sep 17 00:00:00 2001 From: debrice Date: Mon, 6 Feb 2012 08:13:29 -0800 Subject: [PATCH] Make some command a little more anonymous --- Large-app-how-to.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Large-app-how-to.md b/Large-app-how-to.md index deff3ed..744d563 100644 --- a/Large-app-how-to.md +++ b/Large-app-how-to.md @@ -416,15 +416,15 @@ Here is the `/app/__init__.py` : Let's activate your virtualenv and initialize your database: - brice@Brice:~/Projects/dev$ . env/bin/activate - (env)brice@Brice:~/Projects/dev1$ python shell.py + user@Machine:~/Projects/dev$ . env/bin/activate + (env)user@Machine:~/Projects/dev$ python shell.py >>> from app import db >>> db.create_all() >>> exit() now you can go in your root and run `python run.py` ... this should give you something like this: - (env)brice@Brice:~/Projects/dev$ python run.py + (env)user@Machine:~/Projects/dev$ python run.py * Running on http://127.0.0.1:5000/ * Restarting with reloader