An open API service indexing awesome lists of open source software.

https://github.com/team334/recon-2017

:bar_chart: FRC 2017 Android/iOS scouting app
https://github.com/team334/recon-2017

frc frc-scouting react-native

Last synced: 2 months ago
JSON representation

:bar_chart: FRC 2017 Android/iOS scouting app

Awesome Lists containing this project

README

          

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_

Demo Video



Usage
-----
Be sure to have [React Native](https://facebook.github.io/react-native/docs/getting-started.html) installed as well as the [Recon Server](https://github.com/Team334/recon-server) running.

1. Download the repository:
```
$ git clone https://github.com/Team334/recon.git
$ cd recon/
```
2. Install the dependencies:
```
$ sudo npm install --save
$ react-native link
```
3. Change the [recon server](https://github.com/Team334/recon-server) address in `app/config/config.js`:
```javascript
const SERVER = "http://localhost:8080";
```
4. 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](https://facebook.github.io/react-native/docs/getting-started.html).