From 4e1b3e1134eb478563bc434d794085d0a412cb84 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Sat, 10 Apr 2010 17:26:49 +0200 Subject: [PATCH] set secret key :) --- docs/quickstart.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 54a421e9..45a3f0f6 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -478,6 +478,9 @@ sessions work:: # remove the username from the session if its there session.pop('username', None) + # set the secret key. keep this really secret: + app.secret_key = 'the secret key' + Message Flashing ----------------