David Young-chan Kay
2260d900d4
Added guide for getting started on Linux.
...
Reviewed By: svcscm
Differential Revision: D2936728
fb-gh-sync-id: ead3daf31b624e096b12fa8db892724667e87f51
shipit-source-id: ead3daf31b624e096b12fa8db892724667e87f51
2016-02-14 10:36:32 -08:00
Konstantin Raev
1463970f43
fixed a link to android setup docs
...
Reviewed By: svcscm
Differential Revision: D2936714
fb-gh-sync-id: fe97ee55cb5bf5ba736e0e5aa64462e5893a77c8
shipit-source-id: fe97ee55cb5bf5ba736e0e5aa64462e5893a77c8
2016-02-14 09:40:34 -08:00
Konstantin Raev
6f1417c849
CI now builds docs website and deploys it to /%version% path
...
Summary:
Copy of #5760 reverted merge.
We need to preserve history of docs changes on the webserver.
The goal is to allow users to browse outdated versions of docs.
To make things simple all websites will be released to https://facebook.github.io/react-native/releases/version/XX folder when there is a branch cut.
I switched from Travis CI to Cirle CI because it works faster and I am more familiar with it.
How it works:
1. If code is pushed to `master` branch then CI will build a fresh version of docs and put it in https://github.com/facebook/react-native/tree/gh-pages/releases/next folder.
Github will serve this website from https://facebook.github.io/react-native/releases/version/next URL.
All relative URLs will work within that website
2. If code is pushed to `0.20-stable` branch then CI will build a fresh version of docs and put it in https://github.com/facebook/react-native/tree/gh-pages/releases/0.20 folder.
Github will serve this website from https://facebook.github.io/react-native/releases/v
Closes https://github.com/facebook/react-native/pull/5873
Reviewed By: svcscm
Differential Revision: D2926901
Pulled By: androidtrunkagent
fb-gh-sync-id: 16aea430bac815933d9c603f03921cc6353906f1
shipit-source-id: 16aea430bac815933d9c603f03921cc6353906f1
2016-02-11 06:17:42 -08:00
James Ide
1b5b42f3cb
Remove npm 2 recommendation
...
Summary:
npm 3 is working fine especially if you use shrinkwrap at the end. we've been using it for a month+ and the dependency deduping works well.
Closes https://github.com/facebook/react-native/pull/5391
Reviewed By: svcscm
Differential Revision: D2839472
Pulled By: androidtrunkagent
fb-gh-sync-id: 33e551185236694ee5979da701312f12e2582f3c
2016-01-18 17:37:32 -08:00
Seth Ladd
909aa1c929
Link to iOS device docs
...
Spent an hour trying to find this doc. Hope this helps the next person!
2016-01-08 14:15:33 -08:00
Fanghao Chen
fe3b99886d
Requires Xcode 7 or higher to run 0.15.0-rc
2015-11-17 17:09:09 -08:00
James Ide
4fed9bfa7d
[Docs] Suggest installing npm 2 instead of npm 3 for perf reasons
...
npm 3 is really slow compared to npm 2, to the extent that people are reporting bugs.
2015-11-17 11:48:15 -08:00
Martin Konicek
3d489c3a6a
Update GettingStarted.md
2015-10-22 19:05:11 +01:00
Martin Konicek
98aed73e1c
Update GettingStarted.md
2015-10-22 19:02:19 +01:00
Martin Konicek
0b5179dce7
[docs] Add docs about Linux and Windows support
2015-10-21 14:02:27 +01:00
James Ide
cfc8331a7f
[Docs] Remove recommendation to install nvm from brew
...
The nvm maintainers have their own recommended installation instructions (via shell script or git checkout), which are linked to from the docs.
2015-09-25 13:18:31 -07:00
Martin Konicek
a0ccebc460
Update GettingStarted.md
2015-09-24 15:18:42 +01:00
codejet
a7906c9b7c
Fix tiny grammatical error
2015-09-17 22:11:55 +02:00
Dave Sibiski
5538011d30
[Docs][Android] Adds "Running on Device" note
...
Lots of people keep asking why they get a red screen telling them to connect to a dev server when using their device. Most have followed the "Getting Started" guide, but didn't notice the "Running on Device" section since it is kinda buried in the sidebar and isn't linked to from anywhere.
2015-09-15 18:09:32 -04:00
James Ide
f9f050e617
[Docs] Update RN website docs to mention Node 4+ instead of io.js
...
The io.js codebase has been rebranded as "Node.js", so moving forward everyone should install the latest version of Node. The name "io.js" is no longer.
2015-09-14 16:16:10 -07:00
Param Aggarwal
356e800004
[Docs] Remove duplicate Android setup steps
2015-09-15 00:25:59 +05:30
Martin Konicek
42eb5464fd
Release React Native for Android
...
This is an early release and there are several things that are known
not to work if you're porting your iOS app to Android.
See the Known Issues guide on the website.
We will work with the community to reach platform parity with iOS.
2015-09-14 18:13:39 +01:00
Brent Vatne
ee1cbf4c98
[Docs] xcodeproj for new projects is now in iOS/
2015-09-09 21:08:58 -07:00
JonathanHayward
b7f5b8c98f
Update GettingStarted.md
2015-09-09 17:12:58 -05:00
JonathanHayward
6eaa789ec0
Specify missing step
...
The instructions as given did not work. The reason they did not work was that, while my .bashrc was made aware of nvm, my running bash process did not know about nvm until I ran ". ~/bashrc", after which things worked as expected.
2015-09-09 15:59:22 -05:00
James Ide
fd4e75644f
[docs] remove instructions to install node/io.js with brew
...
nvm is way better than homebrew for managing node installations:
- can install multiple versions
- can choose which version of node to install
- easy to clean up under ~/.nvm
- there are still some rough edges with /usr/local on El Cap -- nvm avoids those altogether
2015-08-10 14:31:48 -07:00
James Ide
554f23276b
[Docs] Update setup instructions to install io.js 2.x instead of latest
...
The ws module has not been updated to work with 3.x quite yet.
2015-08-06 14:22:45 -07:00
James Ide
de13b59dd2
[Docs] Explain more about nvm in the io.js setup docs
...
Clarify that io.js is the modern version of Node and explain a little more about how to get set up with nvm, and that it lets you switch between multiple io.js/node versions.
2015-07-29 17:29:18 -07:00
James Ide
a97a866570
[Docs] Update installation docs to reference io.js instead of Node
...
It's pretty straightforward -- io.js is available through Homebrew so all you run is `brew install iojs` and then you can still run `node` from the command line. Also mentioned nvm since it's really good for switching between Node/io.js versions.
2015-07-02 11:42:25 -07:00
Brent Vatne
aa7e318a3f
[Docs] Xcode has a lower-case c
2015-06-02 14:06:30 -07:00
Brent Vatne
613e561751
[Docs] Update Getting Started to include recommended XCode version
2015-06-02 14:04:49 -07:00
Brent Vatne
e65eff8df6
[Docs] Add supported iOS version to getting started
2015-05-30 15:09:32 -07:00
Thomas Treffry
7ee8d8b45c
Update GettingStarted.md
...
Add missing full stops.
2015-04-21 19:45:38 -07:00
Amjad Masad
eb76762a4c
Watchman released 3.1 (no need for `--HEAD` install)
2015-04-20 17:34:59 -07:00
Christopher Chedeau
fcd33c8825
Remove Twice for Cmd+R
2015-04-08 09:26:17 -07:00
David Rabkin
2baf1de3db
(update) Install watchman w/ --HEAD to avoid error
...
Updated the docs for installing watchman with --HEAD per @wez suggestion in this issue thread https://github.com/facebook/react-native/issues/239
2015-04-02 15:04:05 -07:00
Amjad Masad
0b193caf8b
Add '#content' to link
2015-03-30 13:09:11 -07:00
Amjad Masad
325749e9a8
Link to troubleshooting from getting started page
2015-03-30 13:08:37 -07:00
Robert Ing
b577573730
Add links to node and npm in Requirements
...
In getting started, it asks if you are new to node and npm, but there are no links to explain what either is. I believe these links help to clarify.
2015-03-26 16:57:33 -05:00
Christopher Chedeau
c61fbf483f
Make GettingStarted shorter and up to date
2015-03-25 12:56:50 -07:00
Andrew Rasmussen
eceed064f7
Add Tutorial.md
2015-03-25 02:08:09 -07:00
Christopher Chedeau
a738b49ae2
Website: initial page for videos
2015-03-23 09:48:43 -07:00
Christopher Chedeau
4f8a86e8d7
Website tweaks
2015-03-21 10:59:41 -07:00
Christopher Chedeau
9acf831624
Force new travis build
2015-03-15 19:24:38 -07:00
Christopher Chedeau
f598f05cc5
[Website] Put all the guides in the table of content
2015-03-13 21:30:00 -07:00
Christopher Chedeau
70f28332b6
Initial version of the automatically generated docs
2015-02-12 14:44:00 -08:00
Christopher Chedeau
9231d4f8f0
Initial version of the website and docs.
2015-02-11 20:26:43 -08:00