Skip to content
This repository has been archived by the owner on Feb 26, 2021. It is now read-only.

Latest commit

 

History

History
35 lines (27 loc) · 941 Bytes

developer_guide.md

File metadata and controls

35 lines (27 loc) · 941 Bytes

Developer Guide

Run a full development build

Use the following instructions if you want to run a full development build:

  1. standup your own Frida server:

https://github.com/IBM/Frida-backend/blob/master/README.md

  1. Run the Mobile Simulator in your local machine:
npm install
  • make sure your expo and Xcode is already installed on your machine
  • start app with the command:
expo start
  • In new browser tab, Click Run on iOS Simulator option. It opens IOS simulator on your machine with the new app
  • To connect the app to your node instance, change the following line of code in Map.js
   var client = new WS('ws://iot-image-analysis.mybluemix.net/ws/receiveMessage');

to

  var client = new WS('ws://<your node red base url>/ws/receiveMessage');