This commit enhances the project documentation by updating the `.cursorrules` file to reflect the transition to a modern web-based photo management application. It includes detailed sections on the development environment, specifying the PostgreSQL server and development server configurations. Additionally, the README.md is updated to include development database information and environment setup instructions, ensuring clarity for new developers and contributors. These changes improve the overall documentation and support for the project's new architecture.
81 lines
771 B
Plaintext
81 lines
771 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
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/
|