Skip to content

Latest commit

 

History

History
66 lines (40 loc) · 847 Bytes

joconde_clone.md

File metadata and controls

66 lines (40 loc) · 847 Bytes

Start a new project from our Joconde

Step 1 : Duplicate the joconde folder

From the root of react-native-enabler project, run:

rsync -av --include='**.gitignore' --filter=':- .gitignore' ./joconde/ ../<PROJECT_NAME>

✅ Check

An <PROJECT_NAME> folder is created.


Step 2 : Install dependencies

cd ../<PROJECT_NAME>
yarn

✅ Check

  • A node_modules folder has been created

Step 2 : Rename your app

Open app.json and change name and slug properties


Step 3 : Run your ios app

yarn ios

✅ Check

The ios application run.


Step 4 : Run your android app

yarn android

✅ Check

The android application run.


Step 5 : Commit your application

git init
git add .
git commit -m "Init new react-native application"