forked from GeekyAnts/NativeBase
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: development environment setup steps
- Loading branch information
Showing
1 changed file
with
32 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -112,19 +112,13 @@ You are now ready to send PR to NativeBase! | |
|
||
- Fork this repository. | ||
|
||
- Move over to the TestBed App [here](https://github.com/GeekyAnts/native-base-testbed) and clone it: | ||
|
||
```bash | ||
cd native-base-testbed and npm install | ||
``` | ||
|
||
- Clone your fork of NativeBase: | ||
|
||
```git | ||
git clone [email protected]:${YOUR_USERNAME}/NativeBase.git | ||
``` | ||
|
||
- Navigate to NativeBas:e | ||
- Navigate to NativeBase | ||
|
||
``` | ||
cd NativeBase/ | ||
|
@@ -139,15 +133,42 @@ You are now ready to send PR to NativeBase! | |
- Install dependencies: | ||
|
||
```bash | ||
npm install | ||
yarn | ||
``` | ||
|
||
- Move over to the TestBed Example App : | ||
|
||
```bash | ||
cd example | ||
yarn | ||
``` | ||
|
||
* Navigate to your app: | ||
- Navigate back to your app: | ||
|
||
```bash | ||
cd .. | ||
``` | ||
cd ../ | ||
|
||
- Start the Example App: | ||
|
||
```bash | ||
yarn example start | ||
``` | ||
|
||
and start making the changes. | ||
- For Web | ||
```bash | ||
yarn example web | ||
``` | ||
- For IOS | ||
```bash | ||
yarn example ios | ||
``` | ||
- For Android | ||
```bash | ||
yarn example android | ||
``` | ||
|
||
|
||
and start making the changes. | ||
|
||
Happy hacking! |