https://github.com/inovexcorp/mobi
Mobi is a decentralized, federated, and distributed graph data platform for teams and communities to publish and discover data, data models, and analytics that are instantly consumable.
https://github.com/inovexcorp/mobi
graph mobi ontology owl rdf semantic-web shacl sparql vocabulary
Last synced: 24 days ago
JSON representation
Mobi is a decentralized, federated, and distributed graph data platform for teams and communities to publish and discover data, data models, and analytics that are instantly consumable.
- Host: GitHub
- URL: https://github.com/inovexcorp/mobi
- Owner: inovexcorp
- License: agpl-3.0
- Created: 2016-06-29T19:46:58.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2025-09-13T00:57:54.000Z (6 months ago)
- Last Synced: 2025-09-13T02:43:22.777Z (6 months ago)
- Topics: graph, mobi, ontology, owl, rdf, semantic-web, shacl, sparql, vocabulary
- Language: TypeScript
- Homepage: https://mobi.solutions
- Size: 85.5 MB
- Stars: 49
- Watchers: 8
- Forks: 13
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE.TXT
Awesome Lists containing this project
README

***
Mobi is a collaborative knowledge graph platform for teams and communities to develop and publish semantic data and models.
Mobi is built on open semantic web technologies and standards like RDF, OWL, and SPARQL. It provides a collaborative environment for creating, publishing, and consuming OWL ontologies and SKOS vocabularies.
See https://mobi.inovexcorp.com/ for more information.
## Getting Started
To build the Mobi source code, you must have the following software and tools installed.
| Technology | Version | Download Link |
| ----------- |---------| -------------- |
| Java | 17 | http://www.oracle.com/technetwork/java/javase/downloads/index.html |
| Maven | 3.6.3+ | https://maven.apache.org/download.cgi |
| Node.js | 14+ | https://nodejs.org/en/download/ |
| Google Chrome | 114+ | https://www.google.com/chrome/ |
Clone the Mobi project from git and navigate to that directory on your machine. Run the following command to build the source:
```
mvn clean install
```
The build creates the Mobi distribution as both a `.tar.gz` file and a `.zip` file in the
`mobi-distribution/target` directory. Extract one of the files and navigate into that directory.
Inside the extracted distribution directory, start up the Mobi Karaf instance. The distribution is configured to automatically deploy the required bundles and services to the runtime using Karaf features. To start the runtime, simply open the command line interface and run the start script.
For Unix/Linux:
```
bin/start
```
or for Windows:
```
bin\start.bat
```
The Mobi web application should now be accessible at `https://localhost:8443/mobi/index.html`.
To stop the server, use the respective stop scripts.
### Release Build
To prepare Mobi for a release (non-snapshot) build, run the build using the `release-build` profile, i.e:
```
mvn clean install -P release-build
```
The `release-build` profile will minify the web resources and prepare karaf scripts to use release versions.
### Running Integration Tests
Integration tests are controlled by the `skipITs` system property and are disabled by default. To run integration tests as part of the build, set the property to false:
```
mvn clean install -DskipITs=false
```
### Running Function Tests
Functional tests run tests against a browser and are controlled by the `skipFunctional` system property and are disabled by default. To run integration tests as part of the build, set the property to false:
```
mvn clean install -DskipFunctional=false
```
## Docker
Mobi is also available as a Docker image. Visit https://hub.docker.com/r/inovexis/mobi/ to find available images. Images can also be built locally. See the `mobi-distribution` module for more information.
## License
Mobi is made available under the terms of the GNU Affero General Public License (AGPL). See LICENSE.TXT for details.
Third-party library licenses and acknowledgements are detailed in `legal/THIRD-PARTY.txt` and `legal/THIRD-PARTY-ETC.txt`.