Go to file
clemens 25183908da Merge branch 'master' of git.clkl.de:ma/project 2018-06-12 13:57:59 +02:00
analysis Merge branch 'master' of git.clkl.de:ma/project 2018-06-12 11:44:11 +02:00
clients improve NC integration 2018-06-11 15:51:08 +02:00
frontend frontend-reference: add https port mapping 2018-06-12 13:57:08 +02:00
log_data evaluation working 2018-05-29 17:21:36 +02:00
selector add a frontend reference 2018-06-12 11:29:50 +02:00
static Merge branch 'master' of git.clkl.de:ma/project 2018-06-08 20:56:49 +02:00
tasks activityMapper working with celery 2018-03-21 13:08:02 +01:00
.gitignore evaluation working 2018-05-29 17:21:36 +02:00
Dockerfile evaluation working 2018-05-29 17:21:36 +02:00
Readme.md improve documentation 2018-06-12 11:49:24 +02:00
docker-compose.yml PYTHONUNBUFFERED envvar 2018-06-08 21:14:07 +02:00
log_data.conf evaluation working 2018-05-29 17:21:36 +02:00
neocart.json evaluation working 2018-05-29 17:21:36 +02:00
requirements.txt evaluation working 2018-05-29 17:21:36 +02:00
test_neo.py evaluation working 2018-05-29 17:21:36 +02:00

Readme.md

Geogame Log Analyzer

Setup (webui)

  • First setup a reverse proxy (see frontend/ for a reference with traefik)
  • Start the framework
    • docker-compose up -d
    • Default config expects a docker network connection to traefik
      • name: 'traefik_net'
      • created when using the traefik reference from frontend/
      • docker network inspect traefik_net

log data

set mtime of gpx files to the first date:

for i in */*; do touch -m -d "$(head -n 15 $i|grep time | head -n 1 |cut -d">" -f 3|cut -d"<" -f1)" $i; done
for i in */; do touch -m -d "$(head -n 15 $i/*.gpx|grep time | head -n 1 |cut -d">" -f 3|cut -d"<" -f1)" $i; done