File tree 6 files changed +30
-4
lines changed
6 files changed +30
-4
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,16 @@ Barebones Python Microservices
8
8
[ ![ Python 3] ( https://pyup.io/repos/github/python-microservices/microservices-scaffold/python-3-shield.svg )] ( https://pyup.io/repos/github/python-microservices/microservices-scaffold/ )
9
9
10
10
11
+ # How to run the scaffold
12
+
13
+ ``` bash
14
+ python manage.py runserver
15
+
16
+ ```
17
+
18
+ Open in your browser http://localhost:5000/template/ui/
19
+
20
+ Read more info in the documentation page: https://microservices-scaffold.readthedocs.io/en/latest/
11
21
12
22
# Docker
13
23
Original file line number Diff line number Diff line change 1
1
Code Examples
2
2
=============
3
3
4
+ See simple examples in https://github.com/python-microservices/pyms/tree/master/examples
Original file line number Diff line number Diff line change 1
1
Quickstart
2
2
==========
3
3
4
+ Scaffold
5
+ --------
6
+
7
+ Clone and start this scaffold
8
+
4
9
.. code-block :: bash
5
10
git clone https://github.com/python-microservices/microservices-scaffold.git
6
11
cd microservices-scaffold
7
12
python manage.py runserver
13
+
14
+
15
+ Open in your browser http://localhost:8080/template/ui/
16
+
17
+ Template
18
+ --------
19
+
20
+ You can create your own project from template:
21
+
22
+ https://github.com/python-microservices/microservices-template
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ You have a project with this structure:
8
8
Dockerfile
9
9
LICENSE
10
10
manage.py
11
+ config.yml
11
12
README.md
12
13
requirements.txt
13
14
requirements-tests.txt
@@ -18,7 +19,6 @@ You have a project with this structure:
18
19
tox.ini
19
20
project
20
21
├ __init__.py
21
- ├ config.py
22
22
├ models
23
23
│ ├ __init__.py
24
24
│ └ models.py
@@ -48,6 +48,7 @@ You can set the host and the port with:
48
48
49
49
python manage.py runserver -h 0.0.0.0 -p 8080
50
50
51
+
51
52
Common Libraries
52
53
----------------
53
54
Original file line number Diff line number Diff line change 1
1
__author__ = "Alberto Vara"
2
2
3
- __version__ = "0.3.1 "
3
+ __version__ = "1.0.0 "
Original file line number Diff line number Diff line change 1
1
Flask-SQLAlchemy == 2.3.2
2
2
SQLAlchemy == 1.2.16
3
3
Flask-Script == 2.0.6
4
- # py-ms==0.1.1
5
- git+https://github.com/python-microservices/pyms.git@master#egg=py-ms
4
+ py-ms == 1.0.0
You can’t perform that action at this time.
0 commit comments