feat: Initial commit - Hladinator (Water Reservoir Dashboard)
continuous-integration/drone/push Build encountered an error

- Setup React project with Vite and TypeScript
- Built dynamic UI supporting Dark/Light mode and CS/EN localization
- Added Lakes Overview grid with mock data for 40+ reservoirs
- Created interactive Recharts charts for water levels and flow rates
- Designed fully responsive premium mobile layout with custom SVG KPIs
- Developed TypeScript scraper scripts to fetch reservoir data
This commit is contained in:
David Fencl
2026-06-05 21:36:38 +02:00
parent ac43c24f20
commit a5bd4985d1
22 changed files with 4369 additions and 958 deletions
+27 -1
View File
@@ -38,4 +38,30 @@ steps:
image: curlimages/curl
commands:
- curl -u 'howard:Papadopolus0' -X POST 'https://portainer.martinfencl.eu/api/stacks/webhooks/72df3f63-b271-4aef-9325-772a2ccbaeca'
---
kind: pipeline
type: docker
name: scrape-cron
trigger:
event:
- cron
cron:
- lipno-scraper
steps:
- name: scrape-and-commit
image: node:18-alpine
environment:
GIT_AUTHOR_NAME: drone
GIT_AUTHOR_EMAIL: drone@internet-master.cz
GIT_COMMITTER_NAME: drone
GIT_COMMITTER_EMAIL: drone@internet-master.cz
commands:
- apk add --no-cache git
- npm ci
- node scripts/scrapeLipno.js
- git add public/data/lipno.json
- git commit -m "chore: update lipno reservoir data [CI SKIP]" || true
- git push origin main || true