From aca0ce8381fbb083a3eae9b0e1d60a3de43a0be2 Mon Sep 17 00:00:00 2001 From: Mozillazg Date: Mon, 13 Oct 2014 23:03:36 +0800 Subject: [PATCH] Updated docs: add installation --- README.md | 7 +++++++ docs/index.rst | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/README.md b/README.md index a150e10..f85b2ad 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,13 @@ Flask-Migrate Flask-Migrate is an extension that handles SQLAlchemy database migrations for Flask applications using Alembic. The database operations are provided as command line arguments for Flask-Script. +Installation +------------ + +Install Flask-Migrate with `pip`: + + pip install Flask-Migrate + Example ------- diff --git a/docs/index.rst b/docs/index.rst index 8c12989..0477def 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -8,6 +8,13 @@ Welcome to Flask-Migrate's documentation! **Flask-Migrate** is an extension that handles SQLAlchemy database migrations for Flask applications using Alembic. The database operations are provided as command line arguments for Flask-Script. +Installation +------------ + +Install Flask-Migrate with `pip`: + + pip install Flask-Migrate + Example -------