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:
@@ -0,0 +1,54 @@
|
||||
{
|
||||
"id": "beszel",
|
||||
"name": "Beszel",
|
||||
"version": "1.0.0",
|
||||
"nexadashPluginApi": "1.0",
|
||||
"description": "System metrics, CPU/RAM/Disk/Network and alerts.",
|
||||
"author": "NexaDash",
|
||||
"category": "Monitoring",
|
||||
"permissions": ["network:outbound", "secrets:read"],
|
||||
"credentialsSchema": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"api_token": {
|
||||
"type": "string",
|
||||
"title": "API Token",
|
||||
"format": "password"
|
||||
}
|
||||
},
|
||||
"required": ["api_token"]
|
||||
},
|
||||
"widgets": [
|
||||
{
|
||||
"id": "system-overview",
|
||||
"name": "System Overview",
|
||||
"description": "List of monitored systems",
|
||||
"defaultWidth": 3,
|
||||
"defaultHeight": 2
|
||||
},
|
||||
{
|
||||
"id": "resource-chart",
|
||||
"name": "Resource Chart",
|
||||
"description": "CPU/RAM/Disk/Network chart",
|
||||
"defaultWidth": 3,
|
||||
"defaultHeight": 2,
|
||||
"settingsSchema": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"system_id": {
|
||||
"type": "string",
|
||||
"title": "System ID"
|
||||
}
|
||||
},
|
||||
"required": ["system_id"]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "host-cards",
|
||||
"name": "Host Cards",
|
||||
"description": "Cards per host",
|
||||
"defaultWidth": 2,
|
||||
"defaultHeight": 2
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user