Recon is a scouting app for the 2017 FRC competition steamworks. It is built on the principles:
- centralized datastore with mongodb
- convienient data access with socketio
- powerful analytics with numpy
Be sure to have React Native installed as well as the Recon Server running.
- Download the repository:
$ git clone https://github.com/Team334/recon.git
$ cd recon/
- Install the dependencies:
$ sudo npm install --save
$ react-native link
- Change the recon server address in
app/config/config.js
:
const SERVER = "http://localhost:8080";
- Run the app
$ react-native run-ios
# OR
$ react-native run-android
For further resources on deploying a React Native app, please refer to the React Native docs.