This commit updates the .gitignore file to include Node.js related directories and files. Additionally, it introduces a new API for managing role-to-feature permissions, allowing for better control over user access levels. The API includes endpoints for listing and updating role permissions, ensuring that the permissions matrix is initialized and maintained. Documentation has been updated to reflect these changes.
75 lines
672 B
Plaintext
75 lines
672 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/
|