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,51 @@
|
||||
{
|
||||
"id": "proxmox-backup-server",
|
||||
"name": "Proxmox Backup Server",
|
||||
"version": "1.0.0",
|
||||
"nexadashPluginApi": "1.0",
|
||||
"description": "Monitor Proxmox Backup Server datastores, jobs and backups.",
|
||||
"author": "NexaDash",
|
||||
"category": "Infrastructure",
|
||||
"permissions": ["network:outbound", "secrets:read"],
|
||||
"credentialsSchema": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"api_token": {
|
||||
"type": "string",
|
||||
"title": "API Token",
|
||||
"format": "password"
|
||||
}
|
||||
},
|
||||
"required": ["api_token"]
|
||||
},
|
||||
"widgets": [
|
||||
{
|
||||
"id": "pbs-overview",
|
||||
"name": "PBS Overview",
|
||||
"description": "Server status and datastore summary",
|
||||
"defaultWidth": 3,
|
||||
"defaultHeight": 2
|
||||
},
|
||||
{
|
||||
"id": "backup-job-status",
|
||||
"name": "Backup Job Status",
|
||||
"description": "Latest backup job results",
|
||||
"defaultWidth": 3,
|
||||
"defaultHeight": 2
|
||||
},
|
||||
{
|
||||
"id": "datastore-usage",
|
||||
"name": "Datastore Usage",
|
||||
"description": "Storage usage per datastore",
|
||||
"defaultWidth": 2,
|
||||
"defaultHeight": 2
|
||||
},
|
||||
{
|
||||
"id": "failed-backups",
|
||||
"name": "Failed Backups",
|
||||
"description": "Recent failed backup jobs",
|
||||
"defaultWidth": 3,
|
||||
"defaultHeight": 2
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user