1
0
Fork
You've already forked astro-log
0
Logging tool for astronomical observations - with or without optical aids
  • Python 60.9%
  • HTML 39%
  • Dockerfile 0.1%
Find a file
2025年01月01日 11:58:33 +01:00
.github Bugfix 2023年08月09日 10:28:42 +02:00
migrations Test and implementation of Kind class to objects 2023年09月01日 21:25:51 +02:00
resources/test Add parsing tests for holding images 2023年04月12日 10:26:09 +02:00
screenshots Add instructions on usage 2023年04月08日 16:16:22 +02:00
src/astrolog Avoid objects that ends with a whitespace 2025年01月01日 11:58:33 +01:00
tests Sort unique_objects and most_observed_objects according to name 2023年11月19日 16:04:32 +01:00
.gitignore Use black for formatting 2023年06月14日 13:53:42 +02:00
docker-compose.yml Ship with docker 2023年04月08日 15:17:10 +02:00
Dockerfile Do not use alpine, because it is difficult to instal scientific packages 2023年07月09日 16:10:35 +02:00
LICENSE Create LICENSE 2023年09月17日 19:54:35 +02:00
README.md Update README.md 2023年04月08日 16:19:54 +02:00
setup.py Bugfix 2023年08月09日 10:28:42 +02:00

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