From a2225bf57e7c20f5c63c3c2b79db397f3724c1dc Mon Sep 17 00:00:00 2001 From: Noufal Ibrahim Date: Mon, 28 Mar 2011 17:01:21 +0530 Subject: [PATCH] Added a note on actually starting the application Signed-off-by: Armin Ronacher --- docs/tutorial/setup.rst | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/tutorial/setup.rst b/docs/tutorial/setup.rst index 64bf3b66..e9e4d679 100644 --- a/docs/tutorial/setup.rst +++ b/docs/tutorial/setup.rst @@ -70,7 +70,14 @@ server if we want to run that file as a standalone application:: app.run() With that out of the way you should be able to start up the application -without problems. When you head over to the server you will get an 404 +without problems. Do this with the following command:: + + python flaskr.py + +You will see a message telling you that server has started along with +the address at which you can access it. + +When you head over to the server in your browser you will get an 404 page not found error because we don't have any views yet. But we will focus on that a little later. First we should get the database working.