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,44 @@
|
||||
{
|
||||
"id": "zoraxy",
|
||||
"name": "Zoraxy",
|
||||
"version": "1.0.0",
|
||||
"nexadashPluginApi": "1.0",
|
||||
"description": "Reverse proxy hosts, TLS status and backend health.",
|
||||
"author": "NexaDash",
|
||||
"category": "Network",
|
||||
"permissions": ["network:outbound", "secrets:read"],
|
||||
"credentialsSchema": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"api_key": {
|
||||
"type": "string",
|
||||
"title": "API Key",
|
||||
"format": "password"
|
||||
}
|
||||
},
|
||||
"required": ["api_key"]
|
||||
},
|
||||
"widgets": [
|
||||
{
|
||||
"id": "proxy-overview",
|
||||
"name": "Proxy Overview",
|
||||
"description": "List of proxy hosts",
|
||||
"defaultWidth": 3,
|
||||
"defaultHeight": 2
|
||||
},
|
||||
{
|
||||
"id": "tls-expiry",
|
||||
"name": "TLS Expiry",
|
||||
"description": "TLS certificate expiration dates",
|
||||
"defaultWidth": 2,
|
||||
"defaultHeight": 2
|
||||
},
|
||||
{
|
||||
"id": "backend-health",
|
||||
"name": "Backend Health",
|
||||
"description": "Upstream health checks",
|
||||
"defaultWidth": 2,
|
||||
"defaultHeight": 2
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user