- Changed ownership of all files to scheianu:scheianu - Set directories to 755 permissions (rwxr-xr-x) - Set files to 644 permissions (rw-r--r--) - Made shell scripts executable (755) - Allows development without requiring sudo for file modifications - Improves development workflow and security
56 lines
661 B
Plaintext
56 lines
661 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.venv
|
|
|
|
# Development
|
|
.git/
|
|
.gitignore
|
|
*.md
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Exclude shell scripts except Docker-related ones
|
|
*.sh
|
|
!docker-entrypoint.sh
|
|
!install_libreoffice.sh
|
|
!install_emoji_fonts.sh
|
|
|
|
# Database (will be created in volume)
|
|
instance/
|
|
!instance/.gitkeep
|
|
|
|
# Uploads (will be in volume)
|
|
app/static/uploads/*
|
|
!app/static/uploads/.gitkeep
|
|
static/uploads/*
|
|
!static/uploads/.gitkeep
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Development data
|
|
*.db
|
|
*.db-*
|
|
flask_session/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Documentation
|
|
BLUEPRINT_GUIDE.md
|
|
ICON_INTEGRATION.md
|
|
KIVY_PLAYER_COMPATIBILITY.md
|
|
PLAYER_AUTH.md
|
|
PROGRESS.md
|
|
README.md
|
|
|
|
|