mirror of
https://github.com/borbann-platform/backend-api.git
synced 2025-12-18 20:24:05 +01:00
50 lines
644 B
Plaintext
50 lines
644 B
Plaintext
# General
|
|
*.log
|
|
.DS_Store
|
|
*.pem
|
|
.env*
|
|
!.env.example
|
|
*.iml
|
|
.idea/
|
|
.vscode/
|
|
|
|
# Python / Backend
|
|
__pycache__/
|
|
*.py[oc]
|
|
build/
|
|
dist/
|
|
wheels/
|
|
*.egg-info/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
*.sqlite3
|
|
*.db
|
|
.venv/
|
|
/backend/.venv/ # Explicitly ignore nested venv if backend is subdir
|
|
|
|
# Node / Frontend
|
|
node_modules/
|
|
.next/
|
|
out/
|
|
build/
|
|
.pnp.*
|
|
.yarn/*
|
|
!.yarn/patches
|
|
!.yarn/plugins
|
|
!.yarn/releases
|
|
!.yarn/versions
|
|
coverage/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|
|
.vercel/
|
|
|
|
# Uploads (ensure this matches your config.py UPLOAD_DIR)
|
|
/backend/uploads/
|
|
# If uploads are outside backend:
|
|
# /uploads/
|