react/docs
Dan Abramov c82bcefa93 Move How to Contribute to documentation and update it (#7817)
* Move How to Contribute to documentation and update it

* Consistent formatting
2016-09-27 23:20:49 +01:00
..
_css Proper font-family for docs input fields (#7706) (#7708) 2016-09-12 16:29:46 -07:00
_data Move How to Contribute to documentation and update it (#7817) 2016-09-27 23:20:49 +01:00
_includes Add Design Principles to the docs (#7282) 2016-07-14 20:37:28 +01:00
_js [Docs] Error Decoder Page (#6946) 2016-06-04 14:43:56 -07:00
_layouts Finish Jekyll 3 Upgrade 2016-07-19 15:08:58 -07:00
_plugins Fix header link generation for non-English docs (#7497) 2016-08-18 14:55:50 -07:00
_posts Update broken JSFiddle in Why React blog post (#7783) 2016-09-21 13:42:49 +01:00
blog [docs] Don't make authors links on all posts page 2015-10-15 12:18:15 -07:00
contributing Move How to Contribute to documentation and update it (#7817) 2016-09-27 23:20:49 +01:00
css New marketing copy on homepage (#7012) 2016-06-10 19:47:23 -07:00
docs Update 07-forms.ko-KR.md (#7809) 2016-09-26 14:02:33 -07:00
downloads Update website for 15.3.2 2016-09-19 11:14:30 -07:00
img [docs] Use appropriately sized og:image (#7417) 2016-08-03 14:08:44 -07:00
js Update website for 15.3.2 2016-09-19 11:14:30 -07:00
tips Fix links and ids for tips in docs (#7766) 2016-09-19 17:50:26 +03:00
warnings doc: `npm ls react` is a better advice (#7513) 2016-08-26 23:04:00 -07:00
404.md Finish Jekyll 3 Upgrade 2016-07-19 15:08:58 -07:00
Gemfile Upgrade to Jekyll 3 2016-07-19 12:18:49 -07:00
Gemfile.lock Finish Jekyll 3 Upgrade 2016-07-19 15:08:58 -07:00
README.md added instruction for downloading babel-browser (#6960) 2016-06-03 15:43:32 -07:00
Rakefile [Docs] Error Decoder Page (#6946) 2016-06-04 14:43:56 -07:00
_config.yml Update website for 15.3.2 2016-09-19 11:14:30 -07:00
acknowledgements.md Finish Jekyll 3 Upgrade 2016-07-19 15:08:58 -07:00
downloads.md s/npmcdn/unpkg/g (#7609) 2016-08-29 19:45:31 -07:00
favicon.ico Initial public release 2013-05-29 12:54:02 -07:00
feed.xml Finish Jekyll 3 Upgrade 2016-07-19 15:08:58 -07:00
html-jsx.html [docs] Use existing layout for redirecting html-jsx (#6904) 2016-05-26 23:50:55 -07:00
index.md Wordsmith the homepage (#7022) 2016-06-13 12:40:18 -07:00
jsx-compiler.md Finish Jekyll 3 Upgrade 2016-07-19 15:08:58 -07:00
support.md Finish Jekyll 3 Upgrade 2016-07-19 15:08:58 -07: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

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
$ bundle exec rake
$ bundle exec rake fetch_remotes
$ bundle exec 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
$ bundle exec rake watch # Automatically compiles as needed.
# bundle exec rake         Manually compile CSS and JS.
# bundle exec 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.

We also have a rake task that does the same thing (without creating commits). It expects the directory structure mentioned above.

$ bundle exec rake release

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.