Skip to content

Commit b04b707

Browse files
committed
updates
1 parent e6615ab commit b04b707

File tree

11 files changed

+89
-291
lines changed

11 files changed

+89
-291
lines changed

docs/api/node/rnv/_category_.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/api/node/rnv/index.md

Lines changed: 0 additions & 78 deletions
This file was deleted.

docs/api/node/rnv/modules.md

Lines changed: 0 additions & 126 deletions
This file was deleted.

docs/guides/develop.md

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@ At this point your global `rnv` command is linked directly into project above.
2323

2424
It's also best way to contribute back to RNV! :)
2525

26-
```
27-
rnv template apply
28-
=> pick renative-template-hello-world
29-
```
3026

3127
#### Windows development
3228

@@ -35,6 +31,17 @@ Requirements: Python 2.7, Visual Studio installed or install `windows-build-tool
3531
**Please make sure you follow the package's instructions, especially running it in PowerShell as Administrator**
3632
:::
3733

34+
---
35+
## Testing your project with local RNV
36+
37+
In order to test standalone project with local renative navigate to root of your project and run
38+
39+
```
40+
rnv link
41+
```
42+
43+
All standard rnv commands within the project are now executed by your local renative instance
44+
3845
---
3946
## Deployments
4047

@@ -50,21 +57,21 @@ npm run deploy:feat
5057

5158
### Alpha
5259

53-
Alpha Releases (from `develop` branches):
60+
Canary Releases (from `develop` branch):
5461

55-
tag format: `0.31.0-alpha.1`
62+
tag & version format: `0.31.0-canary.1`
5663

57-
npm tag `alpha`
64+
npm tag: `next`
5865

5966
```
60-
npm run deploy:alpha
67+
npm run deploy:canary
6168
```
6269

6370
### Production
6471

6572
Production (from `release/xx` branches):
6673

67-
tag format: `0.31.0`
74+
tag & version format: `0.31.0`
6875

6976
npm tag: `latest`
7077

@@ -77,8 +84,8 @@ npm run deploy:prod
7784

7885
[Documentation for CLI](../api/cli.md)
7986

80-
[Documentation for RNV](../api/node/rnv/modules.md)
87+
[Documentation for RNV Node Library](../api/node/rnv-core/modules.md)
8188

82-
[Documentation for Config](../api/schemas/rnv.project.md)
89+
[Documentation for Config Descriptor](../api/schemas/rnv.project.md)
8390

8491
[Documentation for Runtime](../api/node/renative/modules.md)

docs/overview/installation.md

Lines changed: 1 addition & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ original_id: installation
1010
---
1111
## Requirements
1212

13-
- [Node](https://nodejs.org) `10.13.0` or newer
14-
- [NPM](https://npmjs.com/) `6.4.1` or newer
13+
- [Node](https://nodejs.org) `18.19.1` or newer
1514
- [Android Studio](https://developer.android.com/studio) (if you want to develop for Android)
1615
- [Xcode](https://developer.apple.com/xcode/) (if you want to develop for iOS/tvOS)
1716
- [Tizen Studio](https://developer.tizen.org/ko/development/tizen-studio/configurable-sdk) (if you want to develop for Tizen)
@@ -24,56 +23,3 @@ original_id: installation
2423
```bash
2524
npm install rnv -g
2625
```
27-
28-
---
29-
## Create new app
30-
31-
<table>
32-
<tr>
33-
<th>
34-
<img src="https://renative.org/img/cli_app_create1.gif" />
35-
</th>
36-
</tr>
37-
</table>
38-
39-
```bash
40-
rnv new
41-
```
42-
43-
Follow steps in the terminal
44-
45-
---
46-
## Run first app
47-
48-
Run your first `ios` app
49-
50-
```bash
51-
rnv run -p ios
52-
```
53-
54-
Run your first `android` app
55-
56-
```bash
57-
rnv run -p android
58-
```
59-
60-
Run your first `web` app
61-
62-
```bash
63-
rnv run -p web
64-
```
65-
66-
... and so on
67-
68-
All app code is located in `./src` directory
69-
70-
---
71-
## NPX
72-
73-
:::info
74-
It is recommended that after initial project setup you start using `npx rnv ...` prefix instead of `rnv ...`
75-
76-
This ensures that every project uses correct version of `rnv` to avoid potential compatibility issues
77-
78-
make sure you have npx installed globally via `npm install npx -g`
79-
:::

0 commit comments

Comments
 (0)