Website for the Hagenberg Game Jam.
These are the complete instructions for running a development machine under Microsoft Windows.
Get the Git binaries from https://git-scm.com/ or download GitHub Desktop from https://desktop.github.com/, then clone the repository to your local machine (e.g., C:\Users\[User]\Documents\GitHub\hagenberg-gamejam.at
).
Go to http://rubyinstaller.org/, download the latest installer for Ruby, and run it. Native extensions are built via MSYS2/MinGW. Even though the ruby installer does contain an installer, it is a bit outdated and might give you GPG key issues. Therefore, install MSYS2 from https://www.msys2.org/#installation before installing Ruby.
If you're using Chocolatey, run the following command to get both packages at once:
choco install msys2 ruby
Then install the development toolchain:
ridk install 3
First, install Bundler:
gem install bundler
Then install Jekyll and all required dependencies:
bundle install
Use Bundler to start the development server:
bundle exec jekyll serve --watch
To build the site for deployment, call Jekyll's build command:
bundle exec jekyll build
Then, transfer the contents of the _site
folder to the webserver.
These are the complete instructions for running a development machine under Mac OS X.
Get the Git binaries from https://git-scm.com/ or download GitHub Desktop from https://desktop.github.com/, then clone the repository to your local machine (e.g., /Documents/GitHub/hagenberg-gamejam.at
).
Use the Ruby Version Manager (RVM) to get the latest Ruby version installed. Go to https://rvm.io/ and follow the installation instructions on the front page. Provide the flag --ruby
to install ruby together with RVM in one go.
If you're using Homebrew, run the following command to install the latest version:
brew install ruby
First, install Bundler:
gem install bundler
Then install Jekyll and all required dependencies:
bundle install
Use Bundler to start the development server:
bundle exec jekyll serve --watch
To build the site for deployment, call Jekyll's build command:
bundle exec jekyll build
Then, transfer the contents of the _site
folder to the webserver.
To update all Ruby gems involved, run Bundler's update command:
bundle update
To remove (now unused) older versions, clean up old gems:
gem cleanup