Initial Commit

This commit is contained in:
2025-11-20 15:49:45 +00:00
commit b6dd8b8fe2
1530 changed files with 602744 additions and 0 deletions

41
.gitignore vendored Normal file
View File

@@ -0,0 +1,41 @@
# Virtual environment
.venv/
env/
venv/
# Python bytecode and cache
__pycache__/
*.pyc
*.pyo
*.pyd
# Flask specific
instance/
.webassets-cache/
# Testing
.pytest_cache/
.coverage
htmlcov/
# Build artifacts
dist/
build/
*.egg-info/
# Editor specific files (optional, uncomment if applicable)
# .vscode/
# .idea/
# *.sublime-project
# *.sublime-workspace
# Database files (if using a local SQLite database)
*.db
*.sqlite
*.sqlite3
# Log files
*.log
# Sensitive files (e.g., environment variables)
.env