Added temp formatting to '/stats' and added documentation and CI

This commit is contained in:
2025-06-19 17:22:44 +02:00
parent ca4b75af7a
commit 0f487e3f93
9 changed files with 1102 additions and 17 deletions

17
.github/workflows/docker.yml vendored Normal file
View File

@@ -0,0 +1,17 @@
name: Docker
on:
push:
branches:
- main
workflow_dispatch:
jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Docker image
run: |
mv compose.yml docker-compose.yml
echo -e "version: \"2.2\"\n$(cat docker-compose.yml)" > docker-compose.yml
docker compose build