feat: initial SaaS scaffold

- domain: User, Workspace, Project, AssetLibrary, Asset, IngestJob
- ports: repository interfaces
- application: use cases
- adapters: in-memory
- API: FastAPI 5 routes
- worker: Celery ingest_asset
- tests: 4 passing
This commit is contained in:
Xiaoxia AI
2026-06-15 15:17:40 +08:00
commit b5a62ee9a3
89 changed files with 4689 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
# Node / frontend
node_modules/
.next/
out/
dist/
coverage/
# Python / backend
.venv/
venv/
__pycache__/
.pytest_cache/
.mypy_cache/
.pytype/
ruff_cache/
*.pyc
# Env / secrets
.env
.env.*
!.env.example
# OS / editor
.DS_Store
Thumbs.db
.vscode/
.idea/
# Logs / temp
*.log
tmp/
temp/
# Build / runtime artifacts
build/
.runtime/