Skip to content

add longer serve command #19

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion _episodes/01-git-collaboration.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,13 @@ While not always necessary, it's a good idea to preview your changes locally bef
and making a PR. This way you can be sure that your intended changes render correctly.

The lesson web sites are built using Jekyll, so you'll need to
[install Jekyll] to build the site locally.
[install Jekyll] to build the site locally.

Once you have made your changes, run `jekyll serve` from the root directory of the lesson repository.

> *Depending on your operating system and installations, you might need*
> *to run a longer command:* `bundle exec jekyll serve --baseurl ''`
> *to get everything working.*

Once you have made your changes, run `jekyll serve` from the root directory of the lesson repository.
The site will be built locally and can be viewed at <http://127.0.0.1:4000>.
Expand Down