Add project scaffolding and documentation

Add .env.example with configuration for database, Redis, security, SMTP, workers, and plugins. Add .gitignore for Python, Node.js, Next.js, Docker volumes, and IDE files. Add MIT License. Update README.md with feature overview, quick start guide, architecture description, plugin system documentation, security details, backup/restore instructions, and developer setup. Add Alembic configuration files and placeholder directories for API, web, worker, and plugin components
This commit is contained in:
2026-06-21 09:31:47 +02:00
parent cfeeccbf53
commit d694c8b8e3
197 changed files with 8583 additions and 56 deletions
View File
@@ -0,0 +1,71 @@
{
"id": "home-assistant",
"name": "Home Assistant",
"version": "1.0.0",
"nexadashPluginApi": "1.0",
"description": "Entity status, sensors, automations and device overview.",
"author": "NexaDash",
"category": "Smart Home",
"permissions": ["network:outbound", "secrets:read"],
"credentialsSchema": {
"type": "object",
"properties": {
"long_lived_token": {
"type": "string",
"title": "Long-Lived Access Token",
"format": "password"
}
},
"required": ["long_lived_token"]
},
"widgets": [
{
"id": "entity-card",
"name": "Entity Card",
"description": "Display a single entity",
"defaultWidth": 1,
"defaultHeight": 1,
"settingsSchema": {
"type": "object",
"properties": {
"entity_id": {
"type": "string",
"title": "Entity ID"
}
},
"required": ["entity_id"]
}
},
{
"id": "sensor-chart",
"name": "Sensor Chart",
"description": "History chart for a sensor",
"defaultWidth": 3,
"defaultHeight": 2,
"settingsSchema": {
"type": "object",
"properties": {
"entity_id": {
"type": "string",
"title": "Entity ID"
}
},
"required": ["entity_id"]
}
},
{
"id": "home-status",
"name": "Home Status",
"description": "Overview of important entities",
"defaultWidth": 3,
"defaultHeight": 2
},
{
"id": "automation-status",
"name": "Automation Status",
"description": "Recent automation runs",
"defaultWidth": 2,
"defaultHeight": 2
}
]
}