|
|
3 ngày trước cách đây | |
|---|---|---|
| .. | ||
| _data | 1 tháng trước cách đây | |
| _docs | 1 tháng trước cách đây | |
| _includes | 1 tháng trước cách đây | |
| _layouts | 1 tháng trước cách đây | |
| _posts | 3 ngày trước cách đây | |
| _sass | 1 tháng trước cách đây | |
| _top-level | 1 tháng trước cách đây | |
| blog | 1 tháng trước cách đây | |
| css | 1 tháng trước cách đây | |
| doc-type-examples | 1 tháng trước cách đây | |
| docs | 1 tháng trước cách đây | |
| static | 3 ngày trước cách đây | |
| .gitignore | 1 tháng trước cách đây | |
| CNAME | 1 tháng trước cách đây | |
| CONTRIBUTING.md | 1 tháng trước cách đây | |
| Gemfile | 1 tháng trước cách đây | |
| Gemfile.lock | 1 tháng trước cách đây | |
| LICENSE-DOCUMENTATION | 1 tháng trước cách đây | |
| README.md | 1 tháng trước cách đây | |
| TEMPLATE-INFORMATION.md | 1 tháng trước cách đây | |
| _config.yml | 1 tháng trước cách đây | |
| feed.xml | 1 tháng trước cách đây | |
| index.md | 1 tháng trước cách đây | |
This directory will contain the user and feature documentation for RocksDB. The documentation will be hosted on GitHub pages.
See CONTRIBUTING.md for details on how to add or modify content.
The requirements for running a GitHub pages site locally is described in GitHub help. The steps below summarize these steps.
If you have run the site before, you can start with step 1 and then move on to step 5.
Ensure that you are in the /docs directory in your local RocksDB clone (i.e., the same directory where this README.md exists). The below RubyGems commands, etc. must be run from there.
Make sure you have Ruby and RubyGems installed.
Ruby >= 2.2 is required for the gems. On the latest versions of Mac OS X, Ruby 2.0 is the default. Use
brew install ruby(or your preferred upgrade mechanism) to install a newer version of Ruby for your Mac OS X system.
Make sure you have Bundler installed.
# may require sudo
gem install bundler
Install the project's dependencies
# run this in the 'docs' directory
bundle install
If you get an error when installing
nokogiri, you may be running into the problem described in this nokogiri issue. You can eitherbrew uninstall xz(and thenbrew install xzafter the bundle is installed) orxcode-select --install(although this may not work if you have already installed command line tools).
Run Jekyll's server.
bundle exec jekyll serve
--incremental for faster builds.bundle exec jekyll serve --incremental
We use
bundle execinstead of running straightjekyllbecausebundle execwill always use the version of Jekyll from ourGemfile. Just runningjekyllwill use the system version and may not necessarily be compatible.
--host=0.0.0.0bundle exec jekyll serve --host=0.0.0.0
This will allow you to use the IP address associated with your machine in the URL. That way you could share it with other people.
e.g., on a Mac, you can your IP address with something like ifconfig | grep "inet " | grep -v 127.0.0.1.
Either of commands in the previous step will serve up the site on your local device at http://127.0.0.1:4000/ or http://localhost:4000.
The site depends on Github Pages and the installed bundle is based on the github-pages gem.
Occasionally that gem might get updated with new or changed functionality. If that is the case,
you can run:
bundle update
to get the latest packages for the installation.