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
- Host: GitHub
- URL: https://github.com/team334/recon-2017
- Owner: Team334
- License: gpl-3.0
- Created: 2016-12-17T22:04:47.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-14T03:00:13.000Z (about 9 years ago)
- Last Synced: 2025-11-30T03:45:56.802Z (7 months ago)
- Topics: frc, frc-scouting, react-native
- Language: JavaScript
- Homepage:
- Size: 929 KB
- Stars: 2
- Watchers: 10
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).