1
0
This commit is contained in:
2026-03-30 09:54:38 +00:00
commit 84fc5e4b14
10 changed files with 278 additions and 0 deletions

18
README.md Normal file
View File

@@ -0,0 +1,18 @@
# CommentAutomation
Python project initialized with uv.
## Quick start
1. Install uv.
2. Sync dependencies:
uv sync --group dev
3. Run the app:
uv run uvicorn comment_automation.main:app --app-dir src --host 0.0.0.0 --port 8000
4. Run tests:
uv run pytest