File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change 55 Python Microservices
66====================
77
8+ Stack
9+ -----
10+ * `Flask <https://github.com/pallets/flask >`_
11+ * `SQLAlchemy <https://www.sqlalchemy.org/ >`_
12+ * `Flask-SQLAlchemy <http://flask-sqlalchemy.pocoo.org/2.3/ >`_
13+ * `Flasgger <https://github.com/rochacbruno/flasgger >`_
14+ * `Flask-Script <https://flask-script.readthedocs.io/en/latest/ >`_
815
916
1017Content
@@ -14,5 +21,6 @@ Content
1421
1522 installation
1623 quickstart
24+ structure
1725 configuration
1826 codeexample
Original file line number Diff line number Diff line change 1+ Structure
2+ =========
3+
4+ You have a project with this structure:
5+
6+ .. code-block :: bash
7+
8+ manager.py
9+ project
10+ ├ __init__.py
11+ ├ config.py
12+ ├ views
13+ │ ├ __init__.py
14+ │ └ views.py
15+ ├ models
16+ │ ├ __init__.py
17+ │ └ models.py
18+ └ models
19+ └ test_views.py
You can’t perform that action at this time.
0 commit comments