Skip to content

Team334/recon-2017

Repository files navigation

334 Scouting: Recon

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

Usage

Be sure to have React Native installed as well as the Recon Server running.

  1. Download the repository:
$ git clone https://github.com/Team334/recon.git
$ cd recon/
  1. Install the dependencies:
$ sudo npm install --save
$ react-native link
  1. Change the recon server address in app/config/config.js:
const SERVER = "http://localhost:8080";
  1. 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.