The presence of this file indicates that this vocabulary is based on voc4cat-template.
To avoid merge conflicts on updates, this file should mainly change via merging an updated version from the template repository. Therefore, please consider submitting your requests for changes/improvements as issue in the voc4cat-template repository.
To test the workflow, you may try contributing to voc4cat or explore past PRs in that repository. Voc4Cat is a "deployment" of this repository. If you are interested in understanding the technical details or in developing your own vocabulary, follow the instructions below.
All vocabularies based on this template have the same standard contribution process of
- get and update the vocabulary file (xlsx),
- submit a pull request with the updated xlsx file,
- collaborate on the pull request with editors or other github users,
After approval, your pull request is ready to be merged by the editors.
The merge will include your contribution into the SKOS-vocabulary file in the vocabularies-folder, rebuild the vocabulary documentation and create a joined turtle file that will be published to gh-pages alongside an updated xlsx file.
Excel/xlsx files submitted in pull requests are automatically checked and (if all is good) converted to turtle. A vocabulary-specific configuration enables extended validation, e.g. if terms get removed in a PR or if correct IRIs are used. To validate IRIs the configuration supports ID-ranges (similar to OBO idrange but in toml-format). The idea is that every author gets their own range of IDs to consume. This allows independent work and avoids using the same ID repeatedly.
The voc4cat-template implements automatic storage of different versions of the vocabularies in gh-pages:
dev- Directory with artifacts built from the most recent commit to the main branch.latest- Directory with all files built for the latest release.vYYYY-MM-DD(for examplev2023-08-16) - Directory with all files built for the release with this tag.
For all versions, multiple files are stored (see nfdi4cat/voc4cat-template#11 (comment) for details). The correct version string is automatically inserted to all build artifacts. For dev, the first eight characters of the commit hash are used as version (for example v_fadfa5f9).
- Taking into account the above scheme, the url for the artifacts for the
devversion in gh-pages ishttps://{gh-org-name}.github.io/{repository-name}/dev/{vocabulary-name}/ - For example, in repository
nfdi4cat/voc4cat-templatethe vocabularyvocab_exampleis documented at https://nfdi4cat.github.io/voc4cat-template/dev/vocab_example/
In addition to the specific versions, an index page is generated that links to all vocabularies and the tagged releases.
It is placed at the root of gh-pages (https://{gh-org-name}.github.io/{repository-name}/).
Please strongly consider contributing to the voc4cat vocabulary instead of creating another one.
To discuss about the SKOS vocabularies maintained with this template, create an issue in the vocabulary repository itself (but not in this template-repository).
To contribute new concepts or collections or change existing ones, you may either submit your contributions as Excel/xlsx-file or (as an expert) as new/changed turtle file.
Here are the steps for submitting updates in Excel.
- Get the Excel/xlsx-vocabulary file
- The most recent version of the vocabulary is always available via github-pages.
- The general url is
https://{gh-org-name}.github.io/{repository-name}/dev/{vocabulary-name}.xlsx - For example in nfdi4cat/voc4cat-template the most recent vocabulary
vocab_examplecan be downloaded from https://nfdi4cat.github.io/voc4cat-template/dev/vocab_example.xlsx
- The general url is
- The most recent version of the vocabulary is always available via github-pages.
- Before you can add something new you need to request a range of IDs to assign new IRIs to your additions.
- Create a fork of the vocabulary repository (if you don't yet have one) or pull the latest changes to your fork (via "Sync fork" button in GUI).
- Create a feature branch for your contribution (via GitHub GUI or
git switch -c name-of-branch) - Add the xlsx file to your clone of the repository into the folder
inbox-excel-vocabs- The name of the file must match the vocabulary that you want to update (e.g. myvoc.xlsx to update a vocabulary named "myvoc").
- Create a pull request with the updated Excel-file on GitHub.
- Describe your changes and the motivation for the changes in the pull request note or link to an issue with this information. This will help reviewers to understand the proposed change better.
- Your pull request will be processed automatically by a CI/CD pipeline that typically runs less than a minute.
- Review the artifacts/logs generated by the CI pipeline.
- The workflow artifact will contain an updated xlsx file.
- If all is good your contribution will be either
- directly merged by the maintainers
- or a discussion will be started about what else is needed
- or why the proposed change may not fit.
- If you need to fix something, first pull the changes made by the action with
git pull(or "sync" in GUI). Next, commit further changes to the pull request branch in your clone. This will trigger the pipeline to run again.- If any commits have been made by the CI pipeline, pull the changes to your repo (via "Sync fork" button in GUI) before committing any additional changes.
Finally, when the proposed pull request is accepted, your changes will be integrated in the vocabularies in the folder vocabularies.
The vocabularies are stored in split form using one folder per vocabulary.
Each concept, collection and concept scheme is stored in a separate file using the ID-part of the IRI as file name.
See inbox-excel-vocabs/README.md for a minimal example how to test the submission process.
To discuss about the workflow for maintaining SKOS vocabularies based on this template, create an voc4cat-template issue.
To discuss about the tool that converts Excel to SKOS in gh-actions of this template, create an voc4cat-tool issue.
The template can be used to create your own independent repository for SKOS vocabularies maintenance.
First create a new repository on github without any contents, named e.g. "my-new-vocabulary". Then set up your own independent vocabulary repository on the command line:
git init my-new-vocabulary
cd my-new-vocabulary
git pull https://github.com/nfdi4cat/voc4cat-template
git remote add origin https://github.com/my-gh-name/my-new-vocabulary.git
git push -u origin mainThis adds all commits made in the template´s main branch to your new repository. In addition to this basic setup you may want to
- Adjust the README.md file for your vocabulary.
- Adjust the configuration of your vocabularies in
idranges.toml - Adjust settings of your new GitHub repository. Typically you will want to
- Forbid pushing to main via branch protection rules (Settings > Branches, edit rules for "main")
- Set up rules for required approvals (Settings > Branches, edit rules for "main")
- Configure GitHub pages to use as source "deploy from a branch" and select the branch
gh-pages(Settings > Pages > Build and deployment)
- Optionally
- Add a different license for your vocabulary.
- Optionally provide a custom Excel template with extra sheets, see documentation.
After these steps your repository should work just like voc4cat.
To review the changes made in the template in version 26.x and compare to when you last pulled it use:
git fetch https://github.com/nfdi4cat/voc4cat-template tag v26.x
git diff ...FETCH_HEADIf you want to take over the changes, pull them into your repository
git pull https://github.com/nfdi4cat/voc4cat-template tag v26.xand push the change to the remote repository.
git pushIt is suggested to merge the changes from the template repository before every new release of your vocabulary. This ensures that the centrally maintained features and best practices trickle into your project.
This repository template contains a justfile which pre-defines series of commands as tasks. Theses tasks are run with the just command runner.
In the justfile, uv is used to install and update the Python package voc4cat.
The justfile helps to tun (almost) the same commands as are used in the GitHub workflows locally on your computer. This makes local testing of a modified vocabulary xlsx-file easier. Read the header of the justfile for more info on setting up your environment.
Once you have just installed type the command just at the root of the git-project to list the available commands. For version 1.0.0 of the template, it gives:
$ just
Available recipes:
all # Run all steps as in gh-actions: check xlsx, convert to SKOS, build docs, re-build xlsx
[environment]
clean # Remove all generated files/directories
setup # Run initial setup (run this first)
upgrade # Upgrades voc4cat-tool installation
[individual steps]
check # Check the voc4cat.xlsx file in inbox/ for errors
convert # Convert the voc4cat.xlsx file in inbox/ to turtle
docs # Run voc4cat (build HTML documentation from ttl files)
join # Join individual ttl files in vocabularies/ to one turtle file in outbox/
prov # Add provenance information to all ttl files in vocabularies/
xlsx # Rebuild the xlsx file from the joined ttl file.If you have some Python knowledge, you can of course also install and use the voc4cat Python package just like any other Python package, starting with pip install voc4cat and continuing from there.