This repository contains all of the files needed to build a static paged with github or gitlab systems.
To see the latest STAG homepage version, click the link bellow.
- ruby - it`s best to install it with rbenv tool, which allows to manage multiple ruby instances
- jekyll
- Jekyll Run - provide automatic page builds and execution
On fresh setups, you will first have to install all of the ruby dependencies, you can do this by running the following in the project root directory:
bundle install
After dependencies have been installed, you will not need to run this command again, unless you are updating the dependencies.
To generate the static page and serve it on a webpage, run the following command in project root directory:
bundle exec jekyll serve
If you want to just generate the html files for the static page, you can run the following:
bundle exec jekyll build -d public
This will put all of the static page files inside public
directory.