mirror of
https://github.com/wassname/ray.git
synced 2026-08-14 12:40:23 +08:00
* commit jekyll template * Port blog post to markdown. * Small changes. * Improvements to layout and post. * More improvements. * Add computation graph figures to the blog post. * Small changes. * Update gitignore.
25 lines
315 B
Markdown
25 lines
315 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
|
|
```
|
|
|
|
## Deployment
|
|
|
|
To deploy the site, run (inside the main ray directory):
|
|
|
|
```
|
|
git subtree push --prefix site origin gh-pages
|
|
```
|