-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tiny how-to-build-locally document
- Loading branch information
burkfers
committed
Oct 17, 2023
1 parent
3ef865d
commit a59b88e
Showing
2 changed files
with
8 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ exclude: | |
- Gemfile | ||
- Gemfile.lock | ||
- _site/ | ||
- building-locally.md | ||
|
||
plugins: | ||
- jekyll-default-layout | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#Building locally | ||
|
||
To build locally to preview changes, instally ruby and ruby-bundler, change directory into the cloned repository, and ```bundle install``` to fetch all necessary parts. | ||
|
||
Then, ```bundle exec jekyll serve``` to start a local web server, which will note the URL you should point your browser at in its output. | ||
To enable live previewing as you make changes (just need to reload your browser), add `--incremental`. | ||
|