Run app
Let's install dependencies and run app
Preparing
At first, you should prepare your app for running. It contains next steps
Install dependencies - got to project folder and run:
npm i
iOS - install pods. Go to ios folder of project and run:
pod install
Running
Then, you should run it on you emulator or physical device (more about running in latest official doc of react native)
Starting app on android (from project folder):
npm run android
Starting app on ios (from project folder):
npm run ios
And then, you should test, that your app working right with your database, by checking existing restaurants and products.
You should fill your restaurants and product using admin panel of Food Hunter or manually in database.
Last updated