small fixes based on review

This commit is contained in:
Richard Littauer
2018-06-11 16:43:02 +02:00
parent b2651fc26a
commit 4a5703b4ce
3 changed files with 9 additions and 6 deletions

View File

@@ -17,7 +17,7 @@ We'd love you to open issues, if they're relevant to this repository: feature re
In particular, if you have a large PR you want to send our way, it may make sense to open an issue to discuss it with the maintainers first.
We also use the label 'help wanted' to show issues we want help on! If you'd like to get started working in this repository, it'd be best to jump into those issues.
We also use the label 'help wanted' to show issues we want help on! If you'd like to get started working in this repository, it'd be best to jump into those issues. View those issues [here](https://github.com/probot/probot.github.io/labels/help%20wanted)!
## Submitting a pull request

View File

@@ -18,14 +18,17 @@ Once you've cloned this repo, run these commands in this directory:
```sh
# Only needed the first time:
script/bootstrap
$ script/bootstrap
# And each time you work locally:
script/server
$ script/server
# Below is the expected output:
Server address: http://127.0.0.1:4000
Server running... press ctrl-c to stop.
```
You should then be able to navigate to the URL printed in your console, and see live edits you make render in your browser. You'll likely have to familiarize yourself with how Jekyll works to do larger edits, but it's worth the effort!
You should then be able to navigate to the server address, and see live edits you make render in your browser. You'll likely have to familiarize yourself with how Jekyll works to do larger edits, but it's worth the effort!
Another note: You can see more commands we use, such as our native build and server functions, in `script`. Go take a look.
Another note: You can see more commands we use, such as our native build and server functions, in the [`script`](https://github.com/probot/probot.github.io/tree/master/script) folder. Go take a look!
## Contribute

View File

@@ -4,7 +4,7 @@ set -e
export CC=gcc
echo "==> Installing gem dependencies…"
gem install bundle
which bundle || gem install bundle
bundle check --path vendor/gems 2>&1 > /dev/null || {
time bundle install --binstubs bin --path vendor/gems
}