-
Notifications
You must be signed in to change notification settings - Fork 86
Local Development
Jitin edited this page Oct 26, 2022
·
1 revision
The easy way is to use Bundler to set up and run Jekyll locally. For this, you will need Ruby and Bundler installed for your platform.
After cloning the repo or downloading the source files, open a terminal inside the source folder and run:
-
bundle install
to install Jekyll and required plugins bundle exec jekyll serve --incremental --trace
to make it available on a local server (typically http://localhost:4000/)
The --incremental
flag ensures that any changes you make are reflected in your browser in real-time and the --trace
option might be useful for debugging if things break while you are changing the source files.
More information here