Initial commit

This commit is contained in:
Codex
2026-01-23 11:12:31 +01:00
commit 0c420a8697
27 changed files with 1767 additions and 0 deletions

19
server/pyproject.toml Normal file
View File

@@ -0,0 +1,19 @@
[project]
name = "backup-orchestrator"
version = "0.1.0"
description = "FastAPI orchestrator for Windows SSH pull backups"
authors = ["Codex <dev@example.com>"]
readme = "README.md"
requires-python = ">=3.10"
[project.dependencies]
fastapi = "^0.111"
uvicorn = {extras = ["standard"], version = "^0.23"}
sqlmodel = "^0.0.8"
python-dotenv = "^1.0"
cryptography = "^41.0"
passlib = "^1.7"
[build-system]
requires = ["hatchling>=1.8"]
build-backend = "hatchling.build"