Odin is a messaging bus framework that works with a standard MongoDB database.
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
Odin lets your apps communicate with other Odin-integrated apps. It is a lightweight and efficient framework, and it uses MongoDB as the underlying database. This offers high-availability and cheap/free infrastructure for easy implementation.
To get a local copy up and running follow these simple steps.
- Java JDK 11
- Apache Maven
- Clone the repo
git clone https://github.com/LeelaChacha/odin.git
- Build and Verify
mvn verify
This framework can be used in your projects with jitpack maven repository. Add jitpack repository to your settings.xml or your pom.xml
settings.xml
...
<profiles>
<profile>
<id>jitpack-repo</id>
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>jitpack-repo</activeProfile>
</activeProfiles>
...
pom.xml
...
<repositories>
<repository>
<id>jitpack.io</id>
<name>Jitpack Maven Repository</name>
<url>https://jitpack.io</url>
</repository>
</repositories>
...
After that, Odin can be used directly as a dependency in your project.
...
<dependency>
<groupId>com.github.LeelaChacha</groupId>
<artifactId>odin</artifactId>
<version>__Tag__</version>
</dependency>
...
For more examples, please refer to the Documentation
See the open issues for a list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the Apache 2.0 License. See LICENSE
for more information.
Hukumraj Singh Deora - LinkedIn
Project Link: https://github.com/LeelaChacha/odin