mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-23 20:37:12 +01:00
12 lines
328 B
Makefile
12 lines
328 B
Makefile
|
docs-install:
|
||
|
gem install jekyll bundler
|
||
|
bundle install --gemfile=Gemfile
|
||
|
|
||
|
# run local server for documentation website
|
||
|
# at http://127.0.0.1:4000/
|
||
|
# On first use, please run `make docs-install`
|
||
|
docs-up:
|
||
|
JEKYLL_GITHUB_TOKEN=blank PAGES_API_URL=http://0.0.0.0 bundle exec \
|
||
|
--gemfile=Gemfile \
|
||
|
jekyll server --livereload
|