Skip to content

SaptiSD/TamuHack26

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TamuHack26 - TAMUFlights

Mission Control for flight disruption management. A dashboard to visualize flights, simulate weather events, and optimize routes.

Prerequisites

  • Python (3.9+)
  • Node.js (LTS version recommended)

Setup Guide

1. Environment Variables

Ensure you have a .env file in the backend/ directory with the necessary API keys:

FLIGHTAWARE_API_KEY=your_key_here
OPENWEATHER_API_KEY=your_key_here
GEMINI_API_KEY=your_key_here

2. Backend Setup

Open a terminal in the root directory:

# 1. Create a virtual environment
python -m venv venv

# 2. Activate the virtual environment
# Windows:
.\venv\Scripts\Activate
# Mac/Linux:
source venv/bin/activate

# 3. Install Python dependencies (once)
pip install -r backend/requirements.txt

# 4. Start the Backend Server
python backend/main.py

The backend server will run at http://localhost:8000

3. Frontend Setup

Open a second terminal window:

# 1. Navigate to the frontend directory
cd frontend

# 2. Install JavaScript dependencies (once)
npm install

# 3. Start the Frontend Application
npm run dev

The frontend will run at http://localhost:5173

Features

  • Live Flight Tracking: Real-time visualization of aircraft.
  • Weather Heatmap: Visual overlay of severe weather events.
  • Route Optimization: AI-powered rerouting to avoid storms.
  • God Mode: Simulate storms and security events to test system resilience.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors