- Initialize FastAPI backend with uv package manager - Configure Black, Ruff, pytest, mypy in pyproject.toml - Add health check endpoint and initial test - Create AGENTS.md with coding guidelines for AI agents - Add pre-commit hook to enforce linting and tests
33 lines
263 B
Plaintext
33 lines
263 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.mypy_cache/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
|
|
# Distribution
|
|
dist/
|
|
build/
|
|
*.egg-info/
|