Website for the 2025 Nordic-RSE conference. Based on the zeppelin template.
Check if you have all requirements for local environment. To install all development dependencies install Bundler.
gem install bundlerand run next command from root folder:
bundle installTo start Jekyll run:
jekyll serve -wSite will be available at http://127.0.0.1:4000/zeppelin/ or http://localhost:4000/zeppelin/ (on Windows)
NOTE: in this mode all changes to html and data files will be automatically regenerated, but after changing _config.yml you have to restart server.
You can build a container from this definition file (e.g. preview.def):
BootStrap: docker
From: ruby:3.4-bookworm
%files
Gemfile /opt/jekyll/Gemfile
%post
apt-get update && apt-get install -y build-essential git cmake ruby-dev
cd /opt/jekyll
gem update bundler
gem install bundler jekyll
bundle install
%runscript
bundle exec jekyll serve -wThen I preview using:
$ ./preview.sifNote: You need to install Node.js
To watch changes of .sass files and compile it to the .css on a fly change property safe: true to safe: false in _config.yml.
Note: It works only on local machine, because GitHub runs Jekyll in --save mode
Learn more about Sass development from documentation.
Quick-start guide is not enough? Checkout full documentation.
Project is published under the MIT license. Feel free to clone and modify repo as you want, but don't forget to add reference to authors :)