| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- {
- "app": {
- "name": "Getränkeautomat Feuerwehr Monitor",
- "timezone": "Europe/Berlin",
- "dashboard_refresh_seconds": 15,
- "default_from_email": "automat@med0.de",
- "base_path": "/automat/"
- },
- "api": {
- "bearer_token": "demo-esp32-token"
- },
- "admin": {
- "username": "admin",
- "password_hash": "$2b$10$ZhLCvESv2BmGzGd185Je2.kNU3d9hxQzmSbR1gR5uKxBMC2hVL40m"
- },
- "alerts": {
- "webhooks": [
- {
- "id": "lager-webhook",
- "name": "Lager Webhook",
- "url": "https://example.com/hooks/lager",
- "enabled": false,
- "headers": {
- "X-App-Token": "replace-me"
- }
- }
- ],
- "emails": [
- {
- "id": "lager-team",
- "name": "Lager Team",
- "address": "lager@example.com",
- "enabled": true
- }
- ]
- },
- "machines": [
- {
- "id": "automat-lobby",
- "name": "Lobby Automat",
- "location": "Erdgeschoss",
- "slots": [
- {
- "sensor_id": "fach-a1",
- "label": "A1",
- "product_name": "Cola 0,5l",
- "full_distance_mm": 80,
- "empty_distance_mm": 360,
- "distance_per_unit": 40,
- "alert_below_units": 2,
- "webhook_ids": [
- "lager-webhook"
- ],
- "email_ids": [
- "lager-team"
- ]
- },
- {
- "sensor_id": "fach-a2",
- "label": "A2",
- "product_name": "Wasser still",
- "full_distance_mm": 75,
- "empty_distance_mm": 355,
- "distance_per_unit": 35,
- "alert_below_units": 3,
- "webhook_ids": [],
- "email_ids": [
- "lager-team"
- ]
- }
- ]
- },
- {
- "id": "automat-kantine",
- "name": "Kantinen Automat",
- "location": "1. Stock",
- "slots": [
- {
- "sensor_id": "fach-b1",
- "label": "B1",
- "product_name": "Apfelschorle",
- "full_distance_mm": 90,
- "empty_distance_mm": 390,
- "distance_per_unit": 43,
- "alert_below_units": 2,
- "webhook_ids": [
- "lager-webhook"
- ],
- "email_ids": []
- }
- ]
- }
- ]
- }
|