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
45 lines
1.0 KiB
JSON
45 lines
1.0 KiB
JSON
{
|
|
"id": "authentik",
|
|
"name": "authentik",
|
|
"version": "1.0.0",
|
|
"nexadashPluginApi": "1.0",
|
|
"description": "Users, applications, outposts and login events.",
|
|
"author": "NexaDash",
|
|
"category": "Security",
|
|
"permissions": ["network:outbound", "secrets:read"],
|
|
"credentialsSchema": {
|
|
"type": "object",
|
|
"properties": {
|
|
"api_token": {
|
|
"type": "string",
|
|
"title": "API Token",
|
|
"format": "password"
|
|
}
|
|
},
|
|
"required": ["api_token"]
|
|
},
|
|
"widgets": [
|
|
{
|
|
"id": "auth-overview",
|
|
"name": "Auth Overview",
|
|
"description": "Users and applications summary",
|
|
"defaultWidth": 2,
|
|
"defaultHeight": 2
|
|
},
|
|
{
|
|
"id": "recent-logins",
|
|
"name": "Recent Logins",
|
|
"description": "Latest login events",
|
|
"defaultWidth": 3,
|
|
"defaultHeight": 2
|
|
},
|
|
{
|
|
"id": "app-status",
|
|
"name": "App Status",
|
|
"description": "Application health overview",
|
|
"defaultWidth": 2,
|
|
"defaultHeight": 2
|
|
}
|
|
]
|
|
}
|