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
56 lines
1.3 KiB
JSON
56 lines
1.3 KiB
JSON
{
|
|
"id": "adguard-home",
|
|
"name": "AdGuard Home",
|
|
"version": "1.0.0",
|
|
"nexadashPluginApi": "1.0",
|
|
"description": "DNS statistics, blocked queries, top clients and domains.",
|
|
"author": "NexaDash",
|
|
"category": "Network",
|
|
"permissions": ["network:outbound", "secrets:read"],
|
|
"credentialsSchema": {
|
|
"type": "object",
|
|
"properties": {
|
|
"username": {
|
|
"type": "string",
|
|
"title": "Username"
|
|
},
|
|
"password": {
|
|
"type": "string",
|
|
"title": "Password",
|
|
"format": "password"
|
|
}
|
|
},
|
|
"required": ["username", "password"]
|
|
},
|
|
"widgets": [
|
|
{
|
|
"id": "dns-overview",
|
|
"name": "DNS Overview",
|
|
"description": "Queries, blocked and block rate",
|
|
"defaultWidth": 2,
|
|
"defaultHeight": 2
|
|
},
|
|
{
|
|
"id": "block-rate-chart",
|
|
"name": "Block Rate Chart",
|
|
"description": "Blocked queries over time",
|
|
"defaultWidth": 3,
|
|
"defaultHeight": 2
|
|
},
|
|
{
|
|
"id": "top-clients",
|
|
"name": "Top Clients",
|
|
"description": "Most active clients",
|
|
"defaultWidth": 2,
|
|
"defaultHeight": 2
|
|
},
|
|
{
|
|
"id": "top-blocked-domains",
|
|
"name": "Top Blocked Domains",
|
|
"description": "Most blocked domains",
|
|
"defaultWidth": 2,
|
|
"defaultHeight": 2
|
|
}
|
|
]
|
|
}
|