68 lines
739 B
Plaintext
68 lines
739 B
Plaintext
# ===== Python =====
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.so
|
|
*.egg
|
|
*.egg-info/
|
|
.eggs/
|
|
dist/
|
|
build/
|
|
develop-eggs/
|
|
.installed.cfg
|
|
.Python
|
|
env/
|
|
venv/
|
|
ENV/
|
|
.venv
|
|
pip-selfcheck.json
|
|
pyvenv.cfg
|
|
|
|
# ===== Testing =====
|
|
.pytest_cache/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
coverage.xml
|
|
nosetests.xml
|
|
.tox/
|
|
.cache
|
|
.hypothesis/
|
|
|
|
# ===== Env =====
|
|
.env
|
|
!.env.example
|
|
!.env.local
|
|
!.env.local.example
|
|
|
|
# ===== JetBrains =====
|
|
.idea/
|
|
|
|
# ===== VS Code =====
|
|
.vscode/
|
|
|
|
# ===== Node / Next.js =====
|
|
node_modules/
|
|
.next/
|
|
out/
|
|
coverage/
|
|
.pnp
|
|
.pnp.*
|
|
.yarn/*
|
|
!.yarn/patches
|
|
!.yarn/plugins
|
|
!.yarn/releases
|
|
!.yarn/versions
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|
|
|
|
# ===== Misc =====
|
|
.DS_Store
|
|
*.pem
|
|
.vercel
|
|
*.log
|
|
*.spec
|
|
*.manifest |