74 lines
707 B
Plaintext
74 lines
707 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
package-lock.json
|
|
|
|
# Python
|
|
venv/
|
|
.venv/
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
*.egg-info/
|
|
.eggs/
|
|
dist/
|
|
build/
|
|
*.egg
|
|
|
|
# VSCode
|
|
.vscode/*
|
|
!.vscode/settings.json
|
|
!.vscode/tasks.json
|
|
!.vscode/launch.json
|
|
!.vscode/extensions.json
|
|
|
|
# IDE
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
.dev.vars
|
|
|
|
# Cloudflare Wrangler
|
|
.wrangler/
|
|
.dev.sqlite
|
|
.mf/
|
|
|
|
# Build outputs
|
|
dist/
|
|
out/
|
|
*.tsbuildinfo
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Test coverage
|
|
coverage/
|
|
.nyc_output/
|
|
.pytest_cache/
|
|
htmlcov/
|
|
|
|
# Docker
|
|
*.tar
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|