This is web application designed to enable communication between the HERMES-Pathfinder nanosatellite constellation Mission and Science operation center. The applications lives at https://hermeslink.ssdc.asi.it/. It was realized in python Django, and embeds a grafana dashboard service.
For production:
docker compose -f compose.prod.yml build
docker compose -f compose.prod.yml up
For development:
docker compose build
docker compose up
Both environment requires the settings of a number of dot files. Samples are provided as sample.*.env files or sample.*.env.prod files.
To show the welcome message, run:
python manage.py say_hi
To add test users, run:
python manage.py create_users userfile.txtSee accounts/management/commands/create_users.py for more informations.