Skip to content

Commit d0180a1

Browse files
committed
Fix docs codeblocks
1 parent 539bbb4 commit d0180a1

File tree

4 files changed

+17
-13
lines changed

4 files changed

+17
-13
lines changed

docs/configuration.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Documentation
99
The Microservice create a URL to inspect the Swagger documentation of the api in:
1010

1111
.. code-block:: bash
12+
1213
localhost:5000/[APPLICATION_ROOT]/ui/
1314
1415
Our API Rest work with `connexion <http://connexion.readthedocs.io>`_. You can see connexion docs or the official

docs/index.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ Python Microservice Scaffold is an example to how structure a Flask Microservice
88
This Scaffold is build over `PyMS <https://github.com/python-microservices/pyms>`_ package. PyMS is a `Microservice chassis pattern <https://microservices.io/patterns/microservice-chassis.html>`_
99
like Spring Boot (Java) or Gizmo (Golang). PyMS is a collection of libraries, best practices and recommended ways to build
1010
microservices with Python which handles cross-cutting concerns:
11-
- Externalized configuration
12-
- Logging
13-
- Health checks
14-
- Metrics (TODO)
15-
- Distributed tracing
11+
* Externalized configuration
12+
* Logging
13+
* Health checks
14+
* Metrics (TODO)
15+
* Distributed tracing
1616

1717

1818
Stack

docs/installation.rst

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@ Installation
44
Clone the project
55

66
.. code-block:: bash
7+
78
git clone https://github.com/python-microservices/microservices-scaffold.git
89
910
.. code-block:: bash
10-
virtualenv --python=python[3.6|3.7|3.8] venv
11-
source venv/bin/activate
12-
pip install -r requirements.txt
13-
python manage.py runserver
11+
12+
virtualenv --python=python[3.6|3.7|3.8] venv
13+
source venv/bin/activate
14+
pip install -r requirements.txt
15+
python manage.py runserver
1416
1517
Configure your project and the path of your MS. See :doc:`configuration </configuration>` section.
1618

docs/quickstart.rst

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@ Scaffold
77
Clone and start this scaffold
88

99
.. code-block:: bash
10+
1011
git clone https://github.com/python-microservices/microservices-scaffold.git
1112
cd microservices-scaffold
12-
virtualenv --python=python[3.6|3.7|3.8] venv
13-
source venv/bin/activate
14-
pip install -r requirements.txt
15-
python manage.py runserver
13+
virtualenv --python=python[3.6|3.7|3.8] venv
14+
source venv/bin/activate
15+
pip install -r requirements.txt
16+
python manage.py runserver
1617
1718
1819
Open in your browser http://localhost:8080/template/ui/

0 commit comments

Comments
 (0)