Initial FastAPI face-lock scaffold

This commit is contained in:
2026-04-11 16:32:26 +02:00
commit 660ce4e7cc
9 changed files with 306 additions and 0 deletions

13
README.md Normal file
View File

@@ -0,0 +1,13 @@
# face-lock
FastAPI microservice that finds the primary subject in an image, draws a square around it, and returns a buffered crop.
## Dev
```bash
cp .env.example .env
pip install -r requirements.txt
uvicorn app.main:app --reload --host 0.0.0.0 --port 8000
```
Set `ENV=dev` to enable the Tailwind UI at `/`.