4310a5cc2d
Frontend: - Vite + React 18 + TypeScript + Tailwind v4 + Shadcn/ui - React Flow v12 canvas with all 11 node types and 5 edge types - Dark theme with project design system (cyan, green, orange, purple accents) - Collapsible sidebar, toolbar, detail panel - Zustand store for canvas state - Demo data with 10 nodes and 10 edges Backend: - FastAPI + SQLAlchemy async + SQLite (Python 3.13) - DB models: Node, Edge, CanvasState, PendingDevice, ScanRun - REST API routes: auth, nodes, edges, canvas, scan, status (WebSocket) - JWT auth + bcrypt via config.yml - Pydantic v2 schemas Infra: - GitHub Actions quality + security workflows - .gitignore, .env.example, verify-tooling.sh, security-check.sh
14 lines
395 B
YAML
14 lines
395 B
YAML
auth:
|
|
username: admin
|
|
# Default password: "admin" — change this before deploying!
|
|
# Generate a new hash: python scripts/hash_password.py yourpassword
|
|
password_hash: "$2b$12$EixZaYVK1fsbw1ZfbX3OXePaWxn96p36WQoeG6Lruj3vjPGga31lW"
|
|
|
|
scanner:
|
|
ranges:
|
|
- "192.168.1.0/24"
|
|
interval: null # null = manual only, "hourly" or "daily" for scheduled
|
|
|
|
status_checker:
|
|
interval_seconds: 60
|