This commit is contained in:
2026-02-04 16:43:02 -05:00
parent aa158deb5b
commit 5fd087a4d5
18 changed files with 3686 additions and 0 deletions

58
.gitignore vendored Normal file
View File

@@ -0,0 +1,58 @@
# Environment variables
.env
.env.*
!.env.example
# Dependencies
node_modules/
vendor/
venv/
.venv/
env/
__pycache__/
*.pyc
*.pyo
# Build outputs
dist/
build/
out/
*.egg-info/
.eggs/
# IDE and editors
.idea/
.vscode/
*.swp
*.swo
*~
.project
.classpath
.settings/
# OS files
.DS_Store
.DS_Store?
Thumbs.db
ehthumbs.db
Desktop.ini
# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Testing and coverage
coverage/
.coverage
.nyc_output/
.pytest_cache/
htmlcov/
# Misc
*.bak
*.tmp
*.temp
.cache/