This commit updates the .gitignore file to include the PM2 ecosystem configuration file, ensuring that server-specific paths are ignored during version control. This change helps maintain a cleaner repository by excluding environment-specific configurations.
87 lines
918 B
Plaintext
87 lines
918 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
# Python lib directories (but not viewer-frontend/lib/)
|
|
lib/
|
|
!viewer-frontend/lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
``````````
|
|
# Database files (keep structure, ignore content)
|
|
*.db
|
|
*.sqlite
|
|
*.db-journal
|
|
data/*.db
|
|
data/*.sqlite
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
temp_face_crop_*.jpg
|
|
|
|
# IDE``````````
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Environment variables
|
|
.env
|
|
|
|
.history/
|
|
|
|
photos/
|
|
|
|
# Photo files and large directories
|
|
*.jpg
|
|
*.jpeg
|
|
*.png
|
|
*.gif
|
|
*.bmp
|
|
*.tiff
|
|
*.webp
|
|
dlib/
|
|
*.dat
|
|
*.model
|
|
# Node.js
|
|
node_modules/
|
|
frontend/node_modules/
|
|
frontend/.parcel-cache/
|
|
|
|
# Archive and demo files
|
|
archive/
|
|
demo_photos/
|
|
data/uploads/
|
|
data/thumbnails/
|
|
|
|
|
|
# PM2 ecosystem config (server-specific paths)
|
|
ecosystem.config.js
|