mirror of
https://github.com/zhigang1992/probot.github.io.git
synced 2026-04-28 12:15:27 +08:00
small fixes based on review
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
11
README.md
11
README.md
@@ -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
|
||||
|
||||
|
||||
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user