46 lines
403 B
Plaintext
46 lines
403 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
__pycache__/
|
|
*.pyc
|
|
.env
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
*.exe
|
|
*.dmg
|
|
*.app
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Python
|
|
*.pyo
|
|
*.pyd
|
|
*.pyc
|
|
*.pyo
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Frontend build outputs
|
|
frontend/dist/
|
|
frontend/node_modules/
|
|
|
|
# Backend build outputs
|
|
backend/__pycache__/
|
|
backend/*.pyc |