Minos is a framework which helps you create reactive microservices in Python. Internally, it leverages Event Sourcing, CQRS and a message driven architecture to fulfil the commitments of an asynchronous environment.
The official documentation as well as the API you can find it under https://clariteia.github.io/discovery/. Please, submit any issue regarding documentation as well!
Minos uses poetry
as its default package manager. Please refer to the
Poetry installation guide for instructions on how to install it.
Now you con install all the dependencies by running
make install
In order to make the pre-commits checks available to git, run
pre-commit install
Make yourself sure you are able to run the tests. Refer to the appropriate section in this guide.
In order to run the tests, please make sure you have the Docker Engine and Docker Compose installed.
Move into tests/
directory
cd tests/
Run service dependencies:
docker-compose up -d
Install library dependencies:
make install
Run tests:
make test
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.
- If you happen to find a bug, please file a new issue filling the 'Bug report' template.
- Set the appropriate labels, so we can categorise it easily.
- Wait for any core developer's feedback on it.
- Create an issue following the previous steps.
- Fork the project.
- Push your changes to a local branch.
- Run the tests!
- Submit a pull request from your fork's branch.