chore: add initial project scaffold with gitignore, readme, requirements, and server skeleton

This commit is contained in:
2025-10-04 18:40:44 +00:00
commit f52cc992be
24 changed files with 2893 additions and 0 deletions
+45
View File
@@ -0,0 +1,45 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
.venv/
venv/
ENV/
env/
# Database
*.db
*.sqlite
*.sqlite3
data/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Logs
*.log
logs/
# Distribution
dist/
build/
*.egg-info/
# Testing
.pytest_cache/
.coverage
htmlcov/
# Environment
.env
.env.local