Caution
This repository has been archived and contains unmaintained work that has not been updated in several years. It was initially created as a proof of concept (PoC) and may contain security vulnerabilities or outdated code. Use at your own risk.
This is the open source repository of the Zazuko Ontology Manager.
From our product page:
The Zazuko Ontology Manager (ZOM) is a web application for serving, browsing and modeling RDF Schemas and Ontologies. It supports the full process of creating, publishing and extending an ontology. ZOM's user interface has been designed for teams of domain specialists working jointly on an ontology. No specific ontology modeling knowledge is required to use the editor. ZOM leverages GitHub to store the ontology, but carefully hides the complexity of serializing the schema into RDF triples from users of the editor.
We believe creating, editing, evolving an ontology is easiest done using a collaborative web platform designed specifically for this use case, allowing all actors to reach consensus gradually, using asynchronous proposals, discussions and votes.
Please consult the product page & this blog post for details.
Documentation is available at zazuko.github.io/ontology-manager/.
- Vue devtools extension Chrome, Firefox
- Local GraphQL IDE: GraphiQL
http://localhost:3000/graphiql
(only available in dev mode) - A postgres client (e.g. Postico for MacOS) to inspect schemas and data
For customer example_com
:
drop database example_com_db;
drop role example_com_role_postgraphile;
drop role example_com_role_anonymous;
drop role example_com_role_person;
To create a new theme, simply copy an existing theme and modify it:
cp -r assets/themes/zazuko assets/themes/your-theme
- The scss main file/entrypoint is:
assets/themes/your-theme/theme.scss
- Configure nuxt to use your theme:
{ lang: 'scss', src: '@/assets/themes/your-theme/theme.scss' }
instead of{ lang: 'scss', src: '@/assets/themes/zazuko/theme.scss' }
- GraphQL: https://graphql.org/learn/
- Postgraphile: https://www.graphile.org/postgraphile/introduction/
- Nuxt: https://nuxtjs.org/guide/installation
This software is released under the GNU Affero General Public License, see LICENSE for details.