Skip to content

Commit a193af1

Browse files
author
Sergio García Prado
authored
Merge pull request #100 from minos-framework/0.2.2
v0.2.2
2 parents 6d88bf4 + 0f887e5 commit a193af1

File tree

5 files changed

+10
-21
lines changed

5 files changed

+10
-21
lines changed

HISTORY.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,9 @@
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.

README.md

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -34,31 +34,16 @@ minos set discovery minos
3434
minos 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-
4337
Once we've the dependencies set, the project is ready to get a new microservice!
4438

4539
```shell
46-
cd microservices/
4740
minos 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

6449
You can test the default endpoints through the `api-gateway` using

minos/cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__author__ = "Minos Framework Devs"
22
__email__ = "[email protected]"
3-
__version__ = "0.2.1"
3+
__version__ = "0.2.2"
44

55
import sys
66

minos/cli/templating/fetchers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
)
2222

2323
TEMPLATE_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

2727
class TemplateFetcher:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "minos-cli"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
description = "Command Line Interface for the Minos framework"
55
readme = "README.md"
66
repository = "https://github.com/minos-framework/minos-cli"

0 commit comments

Comments
 (0)