react/docs
Andre Z Sanchez 6f49827c12 Fix typo 2014-08-11 22:57:33 -04:00
..
_css [docs] increase base font-weight 2014-07-24 21:01:20 -07:00
_data Updating "Tutorial" label as per suggestion 2014-07-29 12:20:15 +10:00
_includes Put nav data in "_data" 2013-11-19 15:52:42 -08:00
_js Add --harmony option to live JSX compiler page 2014-06-28 17:29:30 -07:00
_layouts Add "Edit on GitHub" link on docs pages 2014-07-16 11:17:00 -07:00
_plugins Make doc headers clickable again 2013-11-18 17:34:44 -08:00
_posts Remove TodoMVC flux example 2014-08-11 13:02:12 -07:00
blog 2 docs fixes. 2014-06-24 15:12:19 -07:00
css Initial public release 2013-05-29 12:54:02 -07:00
docs Fix typo 2014-08-11 22:57:33 -04:00
downloads v0.11.1 release materials, update to 0.11.0 release materials 2014-07-25 12:59:56 -07:00
img Community Roundup #21 2014-08-02 14:44:57 +02:00
js Normalize line endings 2014-01-17 16:28:32 -08:00
tips Warn when using hyphenated style property names 2014-06-24 13:05:52 +04:00
404.md Simple custom 404 page. 2014-06-24 14:11:37 -07:00
Gemfile Update jekyll to 1.3 2013-11-19 15:18:15 -08:00
Gemfile.lock Update jekyll to 1.3 2013-11-19 15:18:15 -08:00
README.md Fugbix typo. 2014-06-18 23:36:37 -04:00
Rakefile Don't update the docs version by default 2013-09-18 10:40:12 -07:00
_config.yml v0.11.1 release materials, update to 0.11.0 release materials 2014-07-25 12:59:56 -07:00
acknowledgements.md Update authors/acknowledgements [skip ci] 2014-07-16 15:14:49 -07:00
downloads.md Remove mention of envify since it is listed in package.json 2014-07-07 15:00:47 -04:00
extractCode.js undo changes to extractCode, using grunt task instead 2013-10-29 10:15:45 -07:00
favicon.ico Initial public release 2013-05-29 12:54:02 -07:00
feed.xml [docs] RSS: Pass title through xml_escape 2013-06-03 11:36:04 -07:00
html-jsx.md Simple HTML to JSX converter, built during Hackathon 40 at Facebook. 2013-12-21 17:44:38 -08:00
index.md Update homepage for new JSX/JS editor 2014-01-17 16:46:50 -08:00
jsx-compiler.md Fix docs typo 2014-01-29 11:19:45 -08:00
support.md Don't use <center> for twitter embeds 2014-02-05 15:51:06 -08:00

README.md

React Documentation & Website

We use Jekyll to build the site using (mostly) Markdown, and we host it by pushing HTML to GitHub Pages.

Installation

If you are working on the site, you will want to install and run a local copy of it.

Dependencies

In order to use Jekyll, you will need to have Ruby installed.

Mac OS X comes pre-installed with Ruby, but you may need to update RubyGems (via gem update --system). Otherwise, RVM and rbenv are popular ways to install Ruby. Once you have RubyGems and installed Bundler (via gem install bundler), use it to install the dependencies:

$ cd react/docs
$ bundle install # Might need sudo.
$ npm install # Might need sudo.

Instructions

The site requires React, so first make sure you've built the project (via grunt).

Use Jekyll to serve the website locally (by default, at http://localhost:4000):

$ cd react/docs
$ rake
$ jekyll serve -w
$ open http://localhost:4000/react/

We use SASS (with Bourbon) for our CSS, and we use JSX to transform some of our JS. If you only want to modify the HTML or Markdown, you do not have to do anything because we package pre-compiled copies of the CSS and JS. If you want to modify the CSS or JS, use Rake to compile them:

$ cd react/docs
$ rake watch # Automatically compiles as needed.
# rake         Manually compile CSS and JS.
# rake css     Manually compile CSS, only.
# rake js      Manually compile JS, only.

Afterthoughts

Updating facebook.github.io/react

The easiest way to do this is to have a separate clone of this repository, checked out to the gh-pages branch. We have a build step that expects this to be in a directory named react-gh-pages at the same depth as react. Then it's just a matter of running grunt docs, which will compile the site and copy it out to this repository. From there you can check it in.

Note: This should only be done for new releases. You should create a tag corresponding to the release tag in the main repository.

Removing the Jekyll / Ruby Dependency

In an ideal world, we would not be adding a Ruby dependency on part of our project. We would like to move towards a point where we are using React to render the website.