Initial scaffold: FastAPI backend + Vue 3 frontend + Docker setup

Backend: config/db/security/logging core, SQLAlchemy models (Server,
Credential, UpdateJob, UpdateLog, AuditLog, User), services (winrm, ssh,
cau, audit, job_runner), REST API (auth, servers, updates, audit),
Socket.io WebSocket layer.
Frontend: Vue 3 + TS + Pinia + Tailwind, Views (Dashboard, Servers,
Updates, Audit, Login), axios + socket.io-client, nginx prod config.
This commit is contained in:
B0rbor4d
2026-07-31 23:45:31 +00:00
commit cf7c29639c
72 changed files with 10610 additions and 0 deletions
+46
View File
@@ -0,0 +1,46 @@
{
"name": "insight-updater-frontend",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"test": "vitest",
"test:e2e": "playwright test",
"lint": "eslint . --ext .vue,.ts,.js --fix",
"format": "prettier --write ."
},
"dependencies": {
"vue": "^3.4.0",
"vue-router": "^4.3.0",
"pinia": "^2.1.0",
"@vueuse/core": "^10.9.0",
"axios": "^1.6.0",
"socket.io-client": "^4.7.0",
"date-fns": "^3.6.0",
"zod": "^3.22.0",
"@tanstack/vue-query": "^5.0.0",
"lucide-vue-next": "^0.378.0",
"clsx": "^2.1.0",
"tailwind-merge": "^2.2.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.0",
"vite": "^5.2.0",
"vue-tsc": "^2.0.0",
"typescript": "^5.4.0",
"tailwindcss": "^3.4.0",
"postcss": "^8.4.0",
"autoprefixer": "^10.4.0",
"eslint": "^8.57.0",
"@vue/eslint-config-typescript": "^13.0.0",
"prettier": "^3.2.0",
"@tailwindcss/forms": "^0.5.0",
"vitest": "^1.5.0",
"@vue/test-utils": "^2.4.0",
"jsdom": "^24.0.0",
"@playwright/test": "^1.43.0"
}
}