_OLD
I can remote in to the GlobalServer mac mini by going to Network and clicking Remote screen on it. The login uses the GlobalAdmin username.
We start by installing jekyllrb on our host, in my case the Mac mini that we use as a server in the Studio.
That required me to install brew with instructions from here,
git clone https://github.com/Homebrew/brew homebrew
then:
eval "$(homebrew/bin/brew shellenv)"
brew update --force --quiet
chmod -R go-w "$(brew --prefix)/share/zsh"
and then I run
brew install brew-gem brew gem install heroku
to install gem and allow me to run the following gem command in the terminal
gem install bundler jekyll
jekyll new my-awesome-site
cd my-awesome-site
~/my-awesome-site $ bundle exec jekyll serve
=> Now browse to http://localhost:4000