Welcome to the repo hosting Gamespawn's official website! Follow the link to our site below: https://gamespawn.github.io/
- Ruby version 2.4.0 or higher, check Ruby version using
ruby -v
- RubyGems, check version using
gem -v
- GCC and Make, check version using
gcc -v
,g++ -v
, andmake -v
- See Jekyll's Official Website for more detailed information
-
In the repo folder, create a Gemfile:
bundle init
-
Populate the Gemfile with Jekyll:
bundle add jekyll
-
Build the site and make it available on a local server:
bundle exec jekyll serve
-
Browse to http://localhost:4000.
- If the terminal shows
bundler: command not found: jekyll
when runningbundle exec jekyll serve
, try run this command to install gem in another location:sudo gem install -n /usr/local/bin jekyll
. See this SO thread for more info: Jekyll - command not found