wiki/README.md
lifehackerhansol 8d12e14443
readme: channel is named web-dev now
Also, explicitly specify `.html` to the Discord redirect
2023-03-28 05:44:23 -07:00

24 lines
720 B
Markdown

# DS-Homebrew wiki
[![Discord server](https://img.shields.io/badge/Discord%20Server-%23web--dev-green.svg)](https://ds-homebrew.com/discord.html)
[![Crowdin](https://badges.crowdin.net/ds-homebrew-wiki/localized.svg)](https://crowdin.com/project/ds-homebrew-wiki)
Wikis for DS-Homebrew projects
## Running locally
To test the site locally, install Jekyll by running:
```
gem install bundler jekyll
```
Then run
```
bundle install
```
Then you can run the site by running:
```
bundle exec jekyll serve
```
You may want to run with incremental building as there are a lot of pages so it takes a long time to build, note that this may cause some things to not update fully:
```
bundle exec jekyll serve --incremental
```