69 lines
935 B
Plaintext
69 lines
935 B
Plaintext
# Operating systems and editors
|
|
.DS_Store
|
|
Thumbs.db
|
|
Desktop.ini
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*.bak
|
|
*.swp
|
|
*.log
|
|
*~
|
|
|
|
# Private requirement / handover documents
|
|
*.doc
|
|
*.docx
|
|
*交付说明*.md
|
|
|
|
# Python environments and caches
|
|
venv/
|
|
.venv/
|
|
__pycache__/
|
|
**/__pycache__/
|
|
*.py[cod]
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Frontend dependencies and build output
|
|
node_modules/
|
|
admin-ui/node_modules/
|
|
admin-ui/dist/
|
|
|
|
# Local configuration and secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
!.env.docker.example
|
|
!admin-ui/.env
|
|
!admin-ui/.env.development
|
|
!admin-ui/.env.production
|
|
!admin-ui/.env.staging
|
|
admin_token.sha256
|
|
keys/*private*.pem
|
|
keys/*private*.key
|
|
|
|
# Runtime databases, uploads, object storage and generated packages
|
|
*.db
|
|
*.db-journal
|
|
*.db-wal
|
|
*.db-shm
|
|
local_uploads/
|
|
upload_spool/
|
|
crash_storage/
|
|
minio_data/
|
|
runtime/
|
|
dist/
|
|
minio
|
|
|
|
# Runtime files
|
|
*.pid
|
|
|
|
# Docker/local generated files
|
|
.dockerignore.local
|