83 lines
1.0 KiB
Plaintext
83 lines
1.0 KiB
Plaintext
# Python cache
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Conda environment
|
|
.conda/
|
|
|
|
# Virtual Environment
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
env/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
.gemini/
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# Documentation (not needed in container)
|
|
Documentation/
|
|
*.md
|
|
FILES_LIST.txt
|
|
|
|
# Test and utility scripts (not needed in container)
|
|
test_*.py
|
|
check_*.py
|
|
quick_test.py
|
|
|
|
# GUI-only files (not needed for web deployment)
|
|
decrypt_file.py
|
|
web_app.py
|
|
ImaP.ui
|
|
*.exe
|
|
|
|
# Shell/Batch scripts (not needed in container, except entrypoint)
|
|
*.bat
|
|
*.ps1
|
|
!docker-entrypoint.sh
|
|
!docker-service.sh
|
|
|
|
# Caddy/Proxy configs (not using)
|
|
Caddyfile*
|
|
nginx.conf*
|
|
docker-compose.*.yml
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Data files (mounted as volumes, not baked into image)
|
|
uploads/
|
|
output/
|
|
|
|
# Config files (mounted as volumes at runtime)
|
|
config/
|
|
keys/
|
|
users_config.json
|
|
radius_config.json
|
|
email_config.json
|
|
email_config_api.json
|
|
|
|
# Standalone scripts not imported by web app
|
|
api_client.py
|
|
send_mail.py
|
|
|
|
# Model diagram
|
|
audit_portal_model.png
|