Files
AIclinicalresearch/.gitignore
HaHafeng 74a209317e chore: Remove backup files from Git and update .gitignore
Removed from tracking:
- backup_before_pgvector_20260119.sql (database backup)
- postgres_volume_backup_20260119.tar (volume backup)
- pgvector-0.8.0.tar.gz (source archive)

Added to .gitignore:
- Database backup files (*.sql backups, *_backup_*.tar)
- Source code archives (*.tar.gz)
- Excluded Prisma migrations from .sql ignore rule
2026-01-20 00:04:12 +08:00

156 lines
2.1 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Dependencies
node_modules/
.pnp
.pnp.js
# Testing
coverage/
# Production
build/
dist/
# Environment variables
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Docker
docker-compose.override.yml
# Prisma
prisma/.env
*.db
*.db-journal
# Temporary files
tmp/
temp/
*.tmp
# Database backups (large files, backup locally only)
*.sql
!backend/prisma/migrations/**/*.sql
!backend/prisma/manual-migrations/**/*.sql
!backend/scripts/**/*.sql
backup_*.sql
*_backup_*.sql
*_backup_*.tar
postgres_volume_backup_*.tar
# Source code archives
*.tar.gz
pgvector-*.tar.gz
# Backend uploads (用户上传的文件不应提交到Git)
backend/uploads/
# ==================== Python ====================
# Virtual environments (重要!避免提交 2+ GB 的依赖)
venv/
env/
.venv/
ENV/
env.bak/
venv.bak/
# Python cache
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
# PyInstaller
*.manifest
*.spec
# Jupyter Notebook
.ipynb_checkpoints
# pyenv
.python-version
# Celery
celerybeat-schedule
celerybeat.pid
# Environments
.env
.venv
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# Unit test / coverage
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
# mypy
.mypy_cache/
.dmypy.json
dmypy.json
# Pyre
.pyre/
# pytype
.pytype/
# Cython
cython_debug/
# ==================== REDCap Source Code (Reference Only) ====================
# REDCap源码文件夹仅作本地参考不提交到Git
# 原因文件过大158MB+),且为第三方源码
redcap15.8.0/
redcap_external_module_framework_docs_main/
guanfangexternal-module-framework-docs-main/
# 说明:
# - 这些文件夹包含REDCap官方源码用于开发External Module时参考
# - 开发人员需要自行从官方渠道下载
# - REDCap官网https://projectredcap.org/
# - External Module文档https://github.com/vanderbilt-redcap/redcap-external-modules