Skip to content

Commit

Permalink
Updated formatting for code snippets to show line break in on github
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellawrence committed Dec 9, 2014
1 parent 396b506 commit 3c5b2a4
Show file tree
Hide file tree
Showing 20 changed files with 140 additions and 140 deletions.
12 changes: 6 additions & 6 deletions examples/auth-mongoengine/README.rst
Expand Up @@ -4,20 +4,20 @@ To run this example:

1. Clone the repository::

git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin

2. Create and activate a virtual environment::

virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate

3. Install requirements::

pip install -r 'examples/auth-mongoengine/requirements.txt'
pip install -r 'examples/auth-mongoengine/requirements.txt'

4. Run the application::

python examples/auth-mongoengine/app.py
python examples/auth-mongoengine/app.py


16 changes: 8 additions & 8 deletions examples/auth/README.rst
Expand Up @@ -4,24 +4,24 @@ To run this example:

1. Clone the repository::

git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin

2. Create and activate a virtual environment::

virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate

3. Install requirements::

pip install -r 'examples/auth/requirements.txt'
pip install -r 'examples/auth/requirements.txt'

4. Run the application::

python examples/auth/app.py
python examples/auth/app.py

The first time you run this example, a sample sqlite database gets populated automatically. To suppress this behaviour,
comment the following lines in app.py:::

if not os.path.exists(database_path):
build_sample_db()
if not os.path.exists(database_path):
build_sample_db()
16 changes: 8 additions & 8 deletions examples/babel/README.rst
Expand Up @@ -4,20 +4,20 @@ To run this example:

1. Clone the repository::

git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin

2. Create and activate a virtual environment::

virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate

3. Install requirements::

pip install -r 'examples/babel/requirements.txt'

pip install -r 'examples/babel/requirements.txt'
4. Run the application::

python examples/babel/app.py
python examples/babel/app.py


12 changes: 6 additions & 6 deletions examples/file/README.rst
Expand Up @@ -4,20 +4,20 @@ To run this example:

1. Clone the repository::

git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin

2. Create and activate a virtual environment::

virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate

3. Install requirements::

pip install -r 'examples/file/requirements.txt'
pip install -r 'examples/file/requirements.txt'

4. Run the application::

python examples/file/app.py
python examples/file/app.py


16 changes: 8 additions & 8 deletions examples/forms/README.rst
Expand Up @@ -5,24 +5,24 @@ To run this example:

1. Clone the repository::

git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin

2. Create and activate a virtual environment::

virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate

3. Install requirements::

pip install -r 'examples/forms/requirements.txt'
pip install -r 'examples/forms/requirements.txt'

4. Run the application::

python examples/forms/app.py
python examples/forms/app.py

The first time you run this example, a sample sqlite database gets populated automatically. To suppress this behaviour,
comment the following lines in app.py:::

if not os.path.exists(database_path):
build_sample_db()
if not os.path.exists(database_path):
build_sample_db()
16 changes: 8 additions & 8 deletions examples/layout-bootstrap3/README.rst
Expand Up @@ -4,24 +4,24 @@ To run this example:

1. Clone the repository::

git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin

2. Create and activate a virtual environment::

virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate

3. Install requirements::

pip install -r 'examples/layout-bootstrap3/requirements.txt'
pip install -r 'examples/layout-bootstrap3/requirements.txt'

4. Run the application::

python examples/layout-bootstrap3/app.py
python examples/layout-bootstrap3/app.py

The first time you run this example, a sample sqlite database gets populated automatically. To suppress this behaviour,
comment the following lines in app.py:::

if not os.path.exists(database_path):
build_sample_db()
if not os.path.exists(database_path):
build_sample_db()
16 changes: 8 additions & 8 deletions examples/layout/README.rst
Expand Up @@ -4,24 +4,24 @@ To run this example:

1. Clone the repository::

git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin

2. Create and activate a virtual environment::

virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate

3. Install requirements::

pip install -r 'examples/layout/requirements.txt'
pip install -r 'examples/layout/requirements.txt'

4. Run the application::

python examples/layout/app.py
python examples/layout/app.py

The first time you run this example, a sample sqlite database gets populated automatically. To suppress this behaviour,
comment the following lines in app.py:::

if not os.path.exists(database_path):
build_sample_db()
if not os.path.exists(database_path):
build_sample_db()
12 changes: 6 additions & 6 deletions examples/menu-external-links/README.rst
Expand Up @@ -4,20 +4,20 @@ To run this example:

1. Clone the repository::

git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin

2. Create and activate a virtual environment::

virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate

3. Install requirements::

pip install -r 'examples/menu-external-links/requirements.txt'
pip install -r 'examples/menu-external-links/requirements.txt'

4. Run the application::

python examples/menu-external-links/app.py
python examples/menu-external-links/app.py


14 changes: 7 additions & 7 deletions examples/methodview/README.rst
Expand Up @@ -4,18 +4,18 @@ To run this example:

1. Clone the repository::

git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin

2. Create and activate a virtual environment::

virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate

3. Install requirements::

pip install -r 'examples/methodview/requirements.txt'
pip install -r 'examples/methodview/requirements.txt'

4. Run the application::

python examples/methodview/app.py
python examples/methodview/app.py
12 changes: 6 additions & 6 deletions examples/mongoengine/README.rst
Expand Up @@ -4,19 +4,19 @@ To run this example:

1. Clone the repository::

git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin

2. Create and activate a virtual environment::

virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate

3. Install requirements::

pip install -r 'examples/mongoengine/requirements.txt'
pip install -r 'examples/mongoengine/requirements.txt'

4. Run the application::

python examples/mongoengine/app.py
python examples/mongoengine/app.py

12 changes: 6 additions & 6 deletions examples/multi/README.rst
Expand Up @@ -4,19 +4,19 @@ To run this example:

1. Clone the repository::

git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin

2. Create and activate a virtual environment::

virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate

3. Install requirements::

pip install -r 'examples/multi/requirements.txt'
pip install -r 'examples/multi/requirements.txt'

4. Run the application::

python examples/multi/app.py
python examples/multi/app.py

14 changes: 7 additions & 7 deletions examples/peewee/README.rst
Expand Up @@ -4,19 +4,19 @@ To run this example:

1. Clone the repository::

git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin

2. Create and activate a virtual environment::

virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate

3. Install requirements::

pip install -r 'examples/peewee/requirements.txt'

pip install -r 'examples/peewee/requirements.txt'
4. Run the application::

python examples/peewee/app.py
python examples/peewee/app.py

12 changes: 6 additions & 6 deletions examples/pymongo/README.rst
Expand Up @@ -4,19 +4,19 @@ To run this example:

1. Clone the repository::

git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin

2. Create and activate a virtual environment::

virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate

3. Install requirements::

pip install -r 'examples/pymongo/requirements.txt'
pip install -r 'examples/pymongo/requirements.txt'

4. Run the application::

python examples/pymongo/app.py
python examples/pymongo/app.py

0 comments on commit 3c5b2a4

Please sign in to comment.