├── client
├──src
├──public
├── server
├──app.py
├──venv
├── transceiver
└── README.md
client
This directory contains the React application which serves as the frontend of the Ground Station GUI. It includes all the React components, styles, and other assets needed to build and run the client-side application.
server
This directory contains the Flask server which handles the backend operations. The server is responsible for managing WebSocket connections, processing telemetry data, and serving API endpoints.
transceiver
This directory contains the Arduino sketches (.ino files) for various boards used in the telemetry system. Each subdirectory within transceiver/ corresponds to a different board and contains the code needed to operate that board.
This guide provides the steps to set up and run the client and server components of the project. The setup involves navigating to the respective directories, starting the client, and activating the server environment.
Node.js and npm installed Python and pip installed Virtual environment setup for the server
Navigate to the root directory:
For Windows:
setup.bat
For Linux/Mac:
source setup.sh
Navigate to the client directory:
cd root/client
Start the client:
npm start
For Windows:
venv\Scripts\activate
For Linux/Mac:
source venv/Scripts/activate
cd ../server
python app.py
Ensure both the client and server are running simultaneously in separate terminals.
The client will be accessible at the specified URL once started.
The server will be running on the configured port as defined in app.py.
Feel free to modify any section to better suit your project's specific needs or to add any additional information that may be required.