https://github.com/team334/scouting-app
Scouting App for Team 334
https://github.com/team334/scouting-app
app flask frc python react-native scouting-app
Last synced: 5 months ago
JSON representation
Scouting App for Team 334
- Host: GitHub
- URL: https://github.com/team334/scouting-app
- Owner: Team334
- Created: 2024-11-13T23:05:11.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-01-21T16:01:35.000Z (5 months ago)
- Last Synced: 2025-01-21T16:40:17.706Z (5 months ago)
- Topics: app, flask, frc, python, react-native, scouting-app
- Language: HTML
- Homepage: https://334-scouting-app.vercel.app/
- Size: 1.38 MB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.yml
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# 334 Scouting App
| Images | Images |
| ---- | ----- |
|  |  |
|  |  |
|  |  |## Prerequisite
- [MongoDB compass](https://www.mongodb.com/try/download/community) - https://www.mongodb.com/try/download/community
- [Python](https://python.org) - https://python.org## How to install
1. Clone the repo
2. Create a database in [MongoDB compass](https://www.mongodb.com/try/download/community):
3. Create `.env` file in root directory, should look similar to this
```
SECRET_KEY=your_secret_key
MONGO_URI=mongodb://localhost:27017/scouting_app
TBA_AUTH_KEY=your_tba_api_key
DEBUG=False
HOST=localhost
PORT=5000
```
4. Make a virtual environment: `python -m venv venv`
- To activate (type into command line):
- Windows:
- Cmd: `venv\Scripts\activate`
- Powershell: `venv\Scripts\Activate.ps1`
- MacOS & Linux: `source ./venv/bin/activate`
6. Install the dependencies: `pip install -r requirements.txt`
7. Run the app through (in parent directory outside of app): `python -m app`