Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.28 KB

README.md

File metadata and controls

35 lines (27 loc) · 1.28 KB

CI

Astro log

Website to implement logs for (amateur) astronomical observations.

Screenshots

Add and view your equipment

Equipments

List objects observed, favourites, and to-be-watched

Objects

Add a new observation - choose a type

Observation types

Add a new observation

New observation

List all observation sessions

All sessions

Show details for a given session

Session details

Getting started

Without docker

Create a virtualenv with virtualenv -p pythton3 venv and activate it with source venv/bin/activate.

Install dependencies with e.g. pip install -e . which also allows development.

Run the tests (optional, but good sanity check) with pytest --cov=astrolog --cov-report term-missing.

Run the web application with python src/astrolog/web/app.py and follow the instructions from the prompt.

With docker

Just do docker-compose up -d and go to http:localhost:5065