VIP-LES / EosGround

MIT License
0 stars 0 forks source link

EosGround


About

Eos is the software platform for Georgia Tech's "Lightning from the Edge of Space" high-altitude ballooning project under the VIP program. This module defines the ground software.

Installation

Python

  1. Install python >= 3.10 and add to PATH
  2. Clone the repo: git clone https://github.com/VIP-LES/EosGround.git
  3. Initialize virtual env: python -m venv venv (PyCharm can also do this for you)
  4. Every time you want to enter the venv, run source ./venv/bin/activate (Note: If you have PyCharm initialize the venv, then the path might look like ./venv/Scripts/activate)
  5. Install dependencies: pip install -r requirements.txt

Note: to exit the venv, run deactivate

Database

  1. Install PostgreSQL 15 and pgAdmin 4
  2. When prompted to set the password for user 'postgres', set to 'password'
  3. From the repository root, run python -m EosGround.database.db_setup to create the database

Note: on Mac sometimes the postgres server acts up, try sudo service postgres restart

Development

General

Adding Python Dependencies

Data Pipelines

See docs here

Running the OpenMCT Webserver