add gunicorn as project dependency, remove leftover tinydb

This commit is contained in:
Yuyao Huang 2026-05-09 10:22:10 +08:00
parent 2a3482c2c0
commit 0fc62f2d16
2 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,6 @@ Available settings in `config.py`:
5. Use a production WSGI server (e.g., gunicorn):
```bash
uv add gunicorn
uv run gunicorn -w 4 -b 0.0.0.0:5000 app:app
```

View File

@ -6,4 +6,5 @@ requires-python = ">=3.13"
dependencies = [
"bcrypt>=5.0.0",
"flask>=3.1.3",
"gunicorn>=26.0.0",
]