Blankman
Blankman

Reputation: 267020

Can you run jekyll on your own server?

Can you run jekyll on your own server or does it have to work with github pages?

Upvotes: 2

Views: 1019

Answers (2)

Ryan Elmquist
Ryan Elmquist

Reputation: 116

Jekyll just produces static html files that you can host on any server. Usually you'll install Jekyll locally and then upload the site files to your server.

Upvotes: 10

mipadi
mipadi

Reputation: 410672

It's packaged as a RubyGem. Install it via RubyGems:

$ gem install jekyll

You can run it via the jekyll program.

Short answer: yes.

Upvotes: 3

Related Questions