44 lines
466 B
Plaintext
44 lines
466 B
Plaintext
# macOS
|
|
.DS_Store
|
|
**/.DS_Store
|
|
|
|
# Environment files
|
|
.env
|
|
.env.*
|
|
!backend/.env
|
|
!.env.example
|
|
!.env.*.example
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.Python
|
|
.venv/
|
|
venv/
|
|
env/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Node / Next.js
|
|
node_modules/
|
|
.next/
|
|
out/
|
|
dist/
|
|
build/
|
|
*.tsbuildinfo
|
|
|
|
# Runtime data and generated local artifacts
|
|
backend/data/
|
|
json_to_cdsl/input/
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|