From 669aa7459988c63d15e498914ab5d537670e79f3 Mon Sep 17 00:00:00 2001 From: Samuel Dion-Girardeau Date: Sat, 15 Apr 2017 12:19:21 -0400 Subject: [PATCH] Point to the appropriate Flask doc sections --- README.rst | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index b43376a..b35a365 100644 --- a/README.rst +++ b/README.rst @@ -51,11 +51,13 @@ Configuration You can configure the following via environment variables. `SECRET_KEY` this should be a unique key that's used to sign key. This should -be kept secret. See the `Flask Documentation`_ for more information. +be kept secret. See the `Flask Documentation`__ for more information. -`DEBUG` to run Flask web server in debug mode. See the `Flask Documentation`_ for more information. +.. __: http://flask.pocoo.org/docs/quickstart/#sessions -.. _Flask Documentation: http://flask.pocoo.org/docs/quickstart/#sessions +`DEBUG` to run Flask web server in debug mode. See the `Flask Documentation`__ for more information. + +.. __: http://flask.pocoo.org/docs/quickstart/#debug-mode `STATIC_URL` this should be the location of your static assets. You might not need to change this.