File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -14,28 +14,34 @@ sudo gem install bundler jekyll
1414```
1515
1616## To be able to serve via Jekyll
17+
1718Make sure your project has a file called ` Gemfile ` in its root with the following contents:
19+
1820```
1921source 'https://rubygems.org'
2022gem 'github-pages', group: :jekyll_plugins
2123```
2224
2325It is also common practice to have a file called ` .gitignore ` in the project root with (at least) the following contents:
26+
2427```
2528# Jekyll generated
2629/_site/
2730/Gemfile.lock
2831```
2932
3033## Serve via Jekyll
34+
3135``` bash
3236bundle exec jekyll serve
3337```
3438
3539Now browse to < http://localhost:4000 >
3640
3741## Troubleshooting Jekyll
42+
3843To install missing components:
44+
3945``` bash
4046bundle install
4147```
You can’t perform that action at this time.
0 commit comments