From e4b16377cd00eb705a173a9ba85dd2479b07b632 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Koco=C5=84?= <39369166+jkocon@users.noreply.github.com> Date: Tue, 9 Dec 2025 13:19:56 +0100 Subject: [PATCH] Create config.json --- config.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 config.json diff --git a/config.json b/config.json new file mode 100644 index 0000000..3314f05 --- /dev/null +++ b/config.json @@ -0,0 +1,30 @@ +{ + "name": "MinIO Backup", + "version": "1.0.0", + "slug": "minio_backup", + "startup": "application", + "description": "Automatic Home Assistant backups to a MinIO S3 server with retention and optional AES-256 encryption.", + "arch": ["aarch64", "amd64"], + "schema": { + "minio_endpoint": "str", + "minio_access_key": "str", + "minio_secret_key": "str", + "minio_bucket": "str", + "daily_to_keep": "int", + "monthly_to_keep": "int", + "daily_time": "str", + "encryption_enabled": "bool", + "encryption_password": "str" + }, + "options": { + "minio_endpoint": "https://your-minio-server.com", + "minio_access_key": "", + "minio_secret_key": "", + "minio_bucket": "ha-backup", + "daily_to_keep": 3, + "monthly_to_keep": 12, + "daily_time": "03:00", + "encryption_enabled": true, + "encryption_password": "" + } +}