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

14
compose.yml Normal file
View File

@@ -0,0 +1,14 @@
services:
zephyr:
image: zephyr
build: .
container_name: "zephyr"
environment:
ZEPHYR_PORT: 3000 # Listen port
ZEPHYR_TOKEN: "" # OpenWeatherMap API Key
ZEPHYR_CACHE_TTL: 3 # Cache time-to-live in hour
restart: always
volumes:
- "/etc/localtime:/etc/localtime:ro"
ports:
- "3000:3000"