Add hourly historical refresh runner workflow

This commit is contained in:
devRaGonSa
2026-03-23 20:14:07 +01:00
parent 8ae8184f73
commit 569df34dd1
5 changed files with 188 additions and 2 deletions

View File

@@ -11,6 +11,19 @@ services:
- ./backend/data:/app/data
restart: unless-stopped
historical-runner:
build:
context: ./backend
container_name: hll-vietnam-historical-runner
command: ["python", "-m", "app.historical_runner", "--hourly"]
env_file:
- ./backend/.env.example
depends_on:
- backend
volumes:
- ./backend/data:/app/data
restart: unless-stopped
frontend:
build:
context: ./frontend