mirror of
https://github.com/vale981/ray
synced 2025-03-08 19:41:38 -05:00

* Fix image paths in blog post. * Use future instead of object ID. * Add description of ray.wait. * Revert to keep some of the object ID terminology.
29 lines
567 B
Markdown
29 lines
567 B
Markdown
# Ray Website
|
|
|
|
## Development instructions
|
|
|
|
With Ruby >= 2.1 installed, run:
|
|
|
|
```
|
|
gem install jekyll bundler
|
|
bundle install
|
|
```
|
|
|
|
To view the site, run:
|
|
|
|
```
|
|
bundle exec jekyll serve
|
|
```
|
|
|
|
Note that images included under `site/assets/` should be referred to with
|
|
`<img src="{{ site.base-url }}/ray/assets/...">`. They will not render properly
|
|
when serving the site locally, but this is required for getting the paths to
|
|
work out on GitHub.
|
|
|
|
## Deployment
|
|
|
|
To deploy the site, run (inside the main ray directory):
|
|
|
|
```
|
|
git subtree push --prefix site origin gh-pages
|
|
```
|