Removed: - Caddyfile: Caddy reverse proxy config (replaced by nginx.conf) - setup_https.sh: Caddy HTTPS setup script - https_manager.py: Caddy HTTPS management utility - HTTPS_STATUS.txt: Old HTTPS documentation - docker-compose.http.yml: HTTP-only Caddy compose file - player_auth_module.py: Old authentication module (unused) - player_config_template.ini: Old player config template (unused) - test connection.txr: Test file Updated: - init-data.sh: Removed references to deleted caddy/obsolete files - .dockerignore: Removed obsolete ignore entries This completes the Caddy → Nginx migration cleanup.
56 lines
661 B
Plaintext
Executable File
56 lines
661 B
Plaintext
Executable File
# 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
|
|
|
|
|