Live on https://www.snik.eu and https://snikproject.github.io/snik.eu/. This is the website for SNIK, the Semantic Network of Information Management in Hospitals. It is a copy of the HITO website, which is a fork of the Hyde layout, which itself is based on Jekyll, a static site generator.
$ sudo pacman -S ruby
Add the following to your environment configuration file, such as .profile
or .zshrc
and reload (source ~/.zshrc
) it:
export GEM_HOME="$(ruby -e 'puts Gem.user_dir')"
export PATH="$PATH:$GEM_HOME/bin"
Use bundler with the provided Gemfile:
$ gem install bundler
$ bundle install
Install Ruby:
$ brew install ruby
Add the brew ruby path to your shell configuration.
If you're using Zsh, add the following lines to ~/.zshrc
export GEM_HOME="$(ruby -e 'puts Gem.user_dir')"
export PATH="$PATH:$GEM_HOME/bin"
Install bundler and the gems:
$ gem install --user-install bundler
$ bundle install
Switch to the master
branch and run bundle exec jekyll serve --incremental
.
Check if everything looks normal.
The GitHub workflow in .github/workflows/deploy.yml
automatically builds the master branch and deploys it on the static branch.
To build locally, run bundle exec jekyll build (--incremental)
,
This will put the static HTML content into the _site
folder.
We serve the content of the static branch at the official SNIK website https://snik.eu. The static branch is also automatically served using GitHub pages at https://.github.io/snik.eu/.
If you cannot or do not want to install Ruby and the gems on your system, or there is some problem with Ruby, you can also use the Dockerfile, which should work everywhere. Use the following commands or execute the associated script.
goal | command | script |
---|---|---|
build image | docker build -t snik.eu . | scripts/docker-build |
preview page | docker run --rm --network="host" snik.eu | scripts/docker-run-preview |
build page | docker run --rm -it --volume="$PWD:/usr/src/app" -it snik.eu build | scripts/docker-run-build |
bundler: failed to load command: jekyll (/home/konrad/.local/share/gem/ruby/3.0.0/bin/jekyll)
/home/konrad/.local/share/gem/ruby/3.0.0/gems/ffi-1.15.1/lib/ffi.rb:5:in `require': libffi.so.7: cannot open shared object file: No such file or directory - /home/konrad/.local/share/gem/ruby/3.0.0/extensions/x86_64-linux/3.0.0/ffi-1.15.1/ffi_c.so (LoadError)
This can happen if you already built the native extensions (e.g. via bundle install
) with an older version of Ruby and then upgrade Ruby.
Even bundle install
will not rebuild the native extensions in that case if they are already present.
To fix this, run bundle pristine
.
It is also possible that you installed some dependencies using gem install
system- or user-wide, which bundler will not overwrite by default.
In this case, even bundle pristine
may not be enough.
In our experience, this can be fixed by deinstalling Ruby, deleting all leftover gem directories and reinstalling Ruby afterwards.
Docker may run in it's own virtual machine under MacOS and not thus not forward --network="host"
to the network of the machine itself.
While the default way of port mapping in Docker using the -p 4000:4000
gets forwarded to the local host under MacOS, this does not work with the underlying Jekyll server of this website.
Thus, there may not be a way to preview the docker build using jekyll serve
on MacOS.
However you can still build it using Docker and use a local webserver to preview the _site folder.
The SNIK website does not have a WYSIWYG editor like WordPress or Drupal, because it was originally maintained by the SNIK developers, for whom this way had many advantages, such as speed, simplicity, flexibility, stability, versioning and more. For example, even if the server crashes and all data and backups are lost, the newest state of the website or any earlier version can be instantly restored. This website is not designed to be changed by non-technical users, but if you want to make a small change after the end of the project and the developers are not reachable but you work with Windows and don't have technical knowledge and can't install the development tools (Git and either Ruby or Docker), you can follow this guide.
This is the Git repository where the source code for the SNIK website is hosted. The website is not just static HTML, which you can put on an HTML webserver directly, but instead it is written in Markdown, an easy to read text format that is transformed into HTML. Like a compiler, which transforms source code into an executable, Jekyll transforms Markdown into HTML that can be served by a webserver. Jekyll also uses templates and layouts so you get a page with a sidebar, styling and so on.
If you want to change content in a page on the website and your GitHub account has the required rights, you can log in to GitHub and edit the content using the pen symbol ("Edit this file") in one of the files, for example index.md for the home page.
GitHub will give you a basic idea of how it will turn out in the "Preview" tab next to "Edit file", however it will not include any of the styling of Jekyll, so the layout will be broken and there is no sidebar but you can at least see the text.
Then you can commit the changes to the master branch.
This violates our normal procedure because you should always make sure that the master branch is in a functioning state, which you can't preview, but if you don't have any other option and you only make small textual changes it is relatively low risk.
There are automatic actions in place that will now build the website and deploy it on the "static" branch as HTML.
When the actions are successfully finished (green checkmark), the page is automatically published on GitHub pages at https://snikproject.github.io/snik.eu/, where you can check if everything is working as expected.
Then someone with access to the "datrav" server can do a git pull
on /var/www/snikproject/
.
It is also possible to circumvent the server entirely and point the domain snik.eu
to GitHub pages, however then you can't check between build and deploy.
If you don't have edit rights, you can instead choose to create a pull request. This is also good if you want to edit multiple files, such as an image and it's refering text, because then those with write access can perform a squash merge to combine your changes into a single commit.
Delete and add images in the public
folder as needed, change content in the appropriate .md
files.
You can also use the GitHub Desktop client on Windows. After checking out this repository, choose "Use for my own purposes" because we want to modify snik.eu as a fork of Jekyll and not Jekyll itself. Modify the files using your normal tools like a file explorer and text editor and then commit the changes to the master branch.
There may be a more elegant way to accomplish this, if you know one, please create a pull request or an issue.
Needs the Windows package manager winget
on your system.
winget install RubyInstallerTeam.RubyWithDevKit
Open a terminal as administrator
ridk install
Start gem
, it will tell you a path for your gemfiles.
Open a new terminal so that the gem
command is available.
Add that path your PATH environment variable but replace the slashes '/' with backslashes '\'.
Open a new terminal in your project directory, e.g. using GitHub Desktop.
gem install --user-install bundler
bundle install
Then you should be able to run bundle exec jekyll serve --incremental
, which shows a link like http://127.0.0.1:4000 that you can enter in the browser to preview the page.