File tree Expand file tree Collapse file tree 5 files changed +10
-21
lines changed Expand file tree Collapse file tree 5 files changed +10
-21
lines changed Original file line number Diff line number Diff line change 4545* Updated microservices' query repository.
4646* Enhanced defaults Redis Docker container.
4747* Automatic databases creation in script SQL file.
48- * Fixed bugs
48+ * Fixed bugs.
4949* Improved versions compatibility.
50+
51+ ## 0.2.2 (2022-03-18)
52+
53+ * Fixed bugs.
Original file line number Diff line number Diff line change @@ -34,31 +34,16 @@ minos set discovery minos
3434minos set api-gateway minos
3535```
3636
37- Now we can start these services using Docker
38-
39- ``` shell
40- docker-compose up -d
41- ```
42-
4337Once we've the dependencies set, the project is ready to get a new microservice!
4438
4539``` shell
46- cd microservices/
4740minos new microservice testmicroservice
4841```
4942
50- We're almost there! We now to create the microservice's databases
43+ It's time to deploy our system
5144
5245``` shell
53- docker-compose exec postgres psql -U minos -tc ' CREATE database testmicroservice_db'
54- docker-compose exec postgres psql -U minos -tc ' CREATE database testmicroservice_query_db'
55- ```
56-
57- It's time to deploy our microservice
58-
59- ``` shell
60- cd ..
61- docker-compose up -d microservice-testmicroservice
46+ docker-compose up -d
6247```
6348
6449You can test the default endpoints through the ` api-gateway ` using
Original file line number Diff line number Diff line change 11__author__ = "Minos Framework Devs"
223- __version__ = "0.2.1 "
3+ __version__ = "0.2.2 "
44
55import sys
66
Original file line number Diff line number Diff line change 2121)
2222
2323TEMPLATE_URL : Final [str ] = "https://github.com/minos-framework/minos-templates/releases/download"
24- TEMPLATE_VERSION : Final [str ] = "v0.1.2 "
24+ TEMPLATE_VERSION : Final [str ] = "v0.1.3 "
2525
2626
2727class TemplateFetcher :
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " minos-cli"
3- version = " 0.2.1 "
3+ version = " 0.2.2 "
44description = " Command Line Interface for the Minos framework"
55readme = " README.md"
66repository = " https://github.com/minos-framework/minos-cli"
You can’t perform that action at this time.
0 commit comments