Inital Commit

This commit is contained in:
2026-05-05 19:45:12 -04:00
parent 729f421ec8
commit dbc97bddee
21 changed files with 3238 additions and 2 deletions
+56
View File
@@ -0,0 +1,56 @@
# Environment and secrets
.env
.env.*
!.env.example
# Python
__pycache__/
*.py[cod]
*$py.class
.python-version
.venv/
venv/
env/
ENV/
# Python packaging and build output
build/
dist/
*.egg-info/
.eggs/
pip-wheel-metadata/
# Test and coverage output
.pytest_cache/
.coverage
.coverage.*
htmlcov/
coverage.xml
# Type checker and linter caches
.mypy_cache/
.ruff_cache/
.pyre/
.pytype/
# FastAPI/Uvicorn/runtime files
*.log
*.pid
# Frontend dependencies and build artifacts
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
web/dist/
web/build/
# IDE and OS files
.idea/
.vscode/
*.swp
*.swo
.DS_Store
Thumbs.db
desktop.ini