Initial commit: DashCaddy v1.0

Full codebase including API server (32 modules + routes), dashboard frontend,
DashCA certificate distribution, installer script, and deployment skills.
This commit is contained in:
2026-03-05 02:26:12 -08:00
commit f61e85d9a7
337 changed files with 75282 additions and 0 deletions

21
status/api/package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "sami-caddy-api",
"version": "2.0.0",
"description": "Cross-platform API server for managing Caddy and DNS via REST APIs",
"main": "caddy-api.js",
"scripts": {
"start": "node caddy-api.js",
"dev": "nodemon caddy-api.js",
"test": "node test-api.js"
},
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5"
},
"devDependencies": {
"nodemon": "^3.0.1"
},
"keywords": ["caddy", "api", "dns", "technitium", "reverse-proxy", "cross-platform", "sami-cloud"],
"author": "SAMI-CLOUD",
"license": "MIT"
}