Mission Control is a web interface application that is used for the Glint Analyzing Data Observation Satellite (GLADOS) to be launched in 2017. It's written in Flask, and contains numerous libraries to analyze satellite data, incuding self-executed autotests. Currently under work, planned features also include autonomous execution, push notifications, and console access.
##Installing
- In a virtualenv, install the required python libraries with
pip install -r requirements.txt
- Rename
config_sample.py
toconfig.py
and replace'SECRET_KET'
to a long, unguessable string. - Initialize the database by running
./run.py db init
- Start the server with
./run.py runserver <production|development>
(default is development)