61 lines
578 B
Text
61 lines
578 B
Text
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
.venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
*.egg
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
.hypothesis/
|
|
*.log
|
|
|
|
# Node
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
dist/
|
|
dist-ssr/
|
|
*.local
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.production
|
|
.env.development
|
|
|
|
# Build outputs
|
|
backend/ui/
|
|
*.exe
|
|
*.spec
|
|
*.msi
|
|
|
|
# Config (keep templates, ignore actual)
|
|
config.json
|
|
!config.template.json
|
|
|
|
# OS
|
|
Thumbs.db
|
|
Desktop.ini
|