59 lines
516 B
Plaintext
59 lines
516 B
Plaintext
# 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/
|