mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-15 19:56:59 +08:00
18 lines
494 B
Markdown
18 lines
494 B
Markdown
# Homebrew Docs
|
|
|
|
These are the source files for the [Homebrew documentation site](https://docs.brew.sh/).
|
|
|
|
A [GitHub Action](https://github.com/Homebrew/brew/blob/master/.github/workflows/docs.yml) is run to validate each change before the site is deployed to GitHub Pages.
|
|
|
|
## Usage
|
|
|
|
Open <https://docs.brew.sh> in your web browser.
|
|
|
|
To instead generate the site locally to <http://localhost:4000>, run:
|
|
|
|
```bash
|
|
cd `brew --repository`/docs
|
|
bundle install
|
|
bundle exec jekyll serve --watch
|
|
```
|