Welcome to the Web site of the Feature Oriented Software Development Meeting (FOSD).
This website is developed using the Jekyll static site generator and hosted using GitHub Pages.
The current state of the master
branch is always available under https://fosd.github.io/FOSD2018/.
To prevent accidental modification of the live website, the master
branch is protected.
Please create development branches for any proposed changes to the site.
Once you believe your changes should go live, issue a pull request from your branch into master
and assign an appropriate reviewer.
The website should be previewed locally before issuing pull requests.
Perform the following steps for the initial setup:
ruby --version
Check whether you have Ruby 2.1.0 or higher installed on your system.sudo gem install bundler
orgem install --user-install bundler
Bundler is used to manage the gems needed to build the website.bundle config set --local path '.gems'
and thenbundle install
in the root directory of the Repository.
Install all gems needed to build the website into the.gems
directory.
The following command only has to be restarted if the _config.yml
file is changed.
bundle exec jekyll serve
In the root directory of the Repository.
Generate the website and make it available onhttp://127.0.0.1:4000
.
- The root folder of the repository only contains files necessary for the configuration of Jekyll or the repository in general.
- The
_data
folder contains YAML files in which data for the generation of the website is stored. - The
_layouts
folder contains thedefault.html
template which is used to generate all pages of the website. - The
assets
folder contains subfolders in which all assets for the website are to be placed. All CSS files sould be placed inassets/css
. Thestyle.scss
is used to generate CSS which is applied to all pages. All images should be placed inassets/img
. - The
pages
folder contains the Markdown files used to generate the pages of the website. The_config.yml
contains directives causing these files to be rendered into HTML pages under the root of the website.
Execute bundle update
in the root directory of the Repository.
This will update Gemfile.lock
to require the latest versions of all gems the website uses.
Please ensure that no Windows specific gems are committed.