- .gitignore: backend/venv/ - legal: routes/legal/ (base, handlers), legal_legacy.py - personnel: routes/personnel/ re-exports personnel_plg - FGIS: fgis/base_service.py, fgis_revs imports from fgis - docs/SECURITY.md: security guide - lib/logger.ts, logger-client.ts Co-authored-by: Cursor <cursoragent@cursor.com>
61 lines
632 B
Plaintext
61 lines
632 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Build
|
|
.next/
|
|
out/
|
|
build/
|
|
dist/
|
|
|
|
# Python
|
|
backend/venv/
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
.pytest_cache/
|
|
htmlcov/
|
|
.coverage
|
|
*.egg
|
|
|
|
# Защита .env файлов и секретов (никогда не коммитить)
|
|
.env
|
|
.env.local
|
|
.env.development
|
|
.env.production
|
|
.env.*.local
|
|
!.env.example
|
|
*.pem
|
|
*.key
|
|
certs/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# Lock files (optional — uncomment if needed)
|
|
# package-lock.json
|
|
|
|
# Certificates (ФГИС РЭВС)
|
|
certs/
|
|
*.pem
|
|
*.key
|
|
|
|
# Backups
|
|
backups/
|
|
|
|
# Storage
|
|
storage/
|
|
attachments/
|