Skip to content

Revengestyle6/AeroRoute-COP3530

Repository files navigation

AeroRoute Frontend + API Quick Start

The React frontend lives in frontend and calls your C++ algorithm functions through the Express API server in server.

  1. Build the backend executable (from the backend directory):
    • cmake -S . -B build
    • cmake --build build --target aeroroute
  2. Start the API server (from the server directory):
    • npm install
    • npm run dev
  3. Start the frontend (from the frontend directory):
    • npm install
    • npm run dev
  4. Open http://localhost:5173

The API server runs on http://localhost:3000 and invokes backend/build/aeroroute, which uses:

  • findallroutes(...)
  • adjacency_list(...)
  • dijkstras(...)
  • a_star(...)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Generated from COP3530/P2-template