https://github.com/zazuko/ontology-manager
Zazuko Ontology Manager
https://github.com/zazuko/ontology-manager
ontology rdf schema
Last synced: about 2 months ago
JSON representation
Zazuko Ontology Manager
- Host: GitHub
- URL: https://github.com/zazuko/ontology-manager
- Owner: zazuko
- License: other
- Created: 2019-10-24T09:51:59.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-03T13:27:05.000Z (over 1 year ago)
- Last Synced: 2024-01-04T11:55:50.409Z (over 1 year ago)
- Topics: ontology, rdf, schema
- Language: Vue
- Homepage: https://editor.zazuko.com
- Size: 12.6 MB
- Stars: 53
- Watchers: 10
- Forks: 9
- Open Issues: 36
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Zazuko Ontology Manager
> [!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](https://zazuko.com/products/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](https://zazuko.com/products/ontology-manager/) & [this blog post](https://zazuko.com/blog/schema-manager-oss/) for details.
## Documentation
Documentation is available at [zazuko.github.io/ontology-manager/](https://zazuko.github.io/ontology-manager/).
## Helpful Tools
- Vue devtools extension [Chrome, Firefox](https://github.com/vuejs/vue-devtools#installation)
- Local GraphQL IDE: [Graph*i*QL `http://localhost:3000/graphiql`](http://localhost:3000/graphiql) (only available in dev mode)
- A postgres client (e.g. [Postico](https://eggerapps.at/postico/) for MacOS) to inspect schemas and data## FAQ
### How to wipe a customer DB?
For customer `example_com`:
```sql
drop database example_com_db;
drop role example_com_role_postgraphile;
drop role example_com_role_anonymous;
drop role example_com_role_person;
```### How to create a new theme?
To create a new theme, simply copy an existing theme and modify it:
1. `cp -r assets/themes/zazuko assets/themes/your-theme`
2. The scss main file/entrypoint is: `assets/themes/your-theme/theme.scss`
3. 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' }`## References
- GraphQL: https://graphql.org/learn/
- Postgraphile: https://www.graphile.org/postgraphile/introduction/
- Nuxt: https://nuxtjs.org/guide/installation
- Apollo: https://github.com/nuxt-community/apollo-module
- Auth: https://auth.nuxtjs.org/## License
This software is released under the [GNU Affero General Public License](https://www.gnu.org/licenses/agpl-3.0.html), see [LICENSE](LICENSE) for details.