This repository has been archived by the owner on Jan 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #191 from Clariteia/0.0.4
0.0.4
- Loading branch information
Showing
47 changed files
with
914 additions
and
561 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
Credits | ||
======= | ||
# Credits | ||
|
||
Development Lead | ||
---------------- | ||
## Development Lead | ||
|
||
* Andrea Mucci <andrea@clariteia.com> | ||
|
||
Contributors | ||
------------ | ||
## Core Devs | ||
|
||
* Sergio Garcia Prado <sergio.garcia@clariteia.com> | ||
* Vladyslav Fenchak <vladyslav.fenchak@clariteia.com>` | ||
* Vladyslav Fenchak <vladyslav.fenchak@clariteia.com> | ||
* Alberto Amigo Alonso <alberto.amigo@clariteia.com> | ||
|
||
## Contributors | ||
|
||
None yet. Why not be the first? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# How to contribute | ||
|
||
Minos being an open-source project, we are looking forward to having your contributions. No matter whether it is a pull | ||
request with new features, or the creation of an issue related to a bug you have found. | ||
|
||
Please consider these guidelines before you submit any modification. | ||
|
||
Create an issue | ||
---------------- | ||
1. If you happen to find a bug, please file a new issue filling the 'Bug report' template. | ||
2. Set the appropriate labels, so we can categorise it easily. | ||
3. Wait for any core developer's feedback on it. | ||
|
||
Submit a Pull Request | ||
----------------------- | ||
1. Create an issue following the previous steps. | ||
2. Fork the project. | ||
3. Push your changes to a local branch. | ||
4. Run the tests! | ||
5. Submit a pull request from your fork's branch. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,79 @@ | ||
Minos Microservice Networks | ||
=========================== | ||
# Minos Microservice Network | ||
|
||
[![codecov](https://codecov.io/gh/Clariteia/minos_microservice_networks/branch/main/graph/badge.svg)](https://codecov.io/gh/Clariteia/minos_microservice_networks) | ||
[![codecov](https://codecov.io/gh/Clariteia/minos_microservice_common/branch/main/graph/badge.svg)](https://codecov.io/gh/Clariteia/minos_microservice_common) | ||
![Tests](https://github.com/Clariteia/minos_microservice_common/actions/workflows/python-tests.yml/badge.svg) | ||
|
||
![Tests](https://github.com/Clariteia/minos_microservice_networks/actions/workflows/python-tests.yml/badge.svg) | ||
Minos is a framework which helps you create [reactive](https://www.reactivemanifesto.org/) microservices in Python. | ||
Internally, it leverages Event Sourcing, CQRS and a message driven architecture to fulfil the commitments of an | ||
asynchronous environment. | ||
|
||
Python Package with the common network classes and utlities used in Minos Microservice | ||
## Set up a development environment | ||
|
||
Minos uses `poetry` as its default package manager. Please refer to | ||
(https://python-poetry.org/docs/#installation) for instructions on how to install it. | ||
|
||
Credits | ||
------- | ||
Now you con install all the dependencies by running | ||
```bash | ||
make install | ||
``` | ||
|
||
In order to make the pre-commits checks available to git, run | ||
```bash | ||
pre-commit install | ||
``` | ||
|
||
Make yourself sure you are able to run the tests. Refer to the appropriate section in this guide. | ||
|
||
## Run the tests | ||
|
||
In order to run the tests, please make sure you have the [Docker Engine](https://docs.docker.com/engine/install/) | ||
and [Docker Compose](https://docs.docker.com/compose/install/) installed. | ||
|
||
Move into `tests/` directory | ||
|
||
```bash | ||
cd tests/ | ||
``` | ||
Run service dependencies: | ||
|
||
```bash | ||
docker-compose up -d | ||
``` | ||
|
||
Install library dependencies: | ||
|
||
```bash | ||
make install | ||
``` | ||
|
||
Run tests: | ||
|
||
```bash | ||
make test | ||
``` | ||
|
||
## How to contribute | ||
|
||
Minos being an open-source project, we are looking forward to having your contributions. No matter whether it is a pull | ||
request with new features, or the creation of an issue related to a bug you have found. | ||
|
||
Please consider these guidelines before you submit any modification. | ||
|
||
### Create an issue | ||
|
||
1. If you happen to find a bug, please file a new issue filling the 'Bug report' template. | ||
2. Set the appropriate labels, so we can categorise it easily. | ||
3. Wait for any core developer's feedback on it. | ||
|
||
### Submit a Pull Request | ||
|
||
1. Create an issue following the previous steps. | ||
2. Fork the project. | ||
3. Push your changes to a local branch. | ||
4. Run the tests! | ||
5. Submit a pull request from your fork's branch. | ||
|
||
## Credits | ||
|
||
This package was created with ![Cookiecutter](https://github.com/audreyr/cookiecutter) and the ![Minos Package](https://github.com/Clariteia/minos-pypackage) project template. | ||
|
||
This package was created with ![Cookiecutter](https://github.com/audreyr/cookiecutter) | ||
and the ![Minos Package](https://github.com/Clariteia/minos-pypackage) project template. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Run the tests | ||
============== | ||
|
||
In order to run the tests, please make sure you have the `Docker Engine <https://docs.docker.com/engine/install/>`_ | ||
and `Docker Compose <https://docs.docker.com/compose/install/>`_ installed. | ||
|
||
Move into tests/ directory | ||
|
||
`cd tests/` | ||
|
||
Run service dependencies: | ||
|
||
`docker-compose up -d` | ||
|
||
Install library dependencies: | ||
|
||
`make install` | ||
|
||
Run tests: | ||
|
||
`make test` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Set up a development environment | ||
================================= | ||
|
||
Since we use `poetry` as the default package manager, it must be installed. Please refer to | ||
`https://python-poetry.org/docs/#installation`. | ||
|
||
Run `poetry install` to get the dependencies. | ||
|
||
Run `pre-commit install` to set the git checks before commiting. | ||
|
||
Make yourself sure you are able to run the tests. Refer to the appropriate section in this guide. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.