Initial commit

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
D Stephenson
2026-04-22 20:43:59 +00:00
commit 6c21525b79
23 changed files with 36533 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
# ── RV50x Template Manager — Docker ignore ──────────────────────────────────
# Files and folders that should NOT be copied into the Docker image.
# Data directories are mounted as volumes instead.
# Virtual environment — dependencies are installed fresh in the image
.venv/
# Data directories — these are bind-mounted as named volumes
template_downloads/
template_uploads/
xml_templates/
# Legacy and backup scripts — not needed in the container
download_csv.py
upload_csv.py
rv50x_template_manager.py
modems.csv
# Standalone CLI scripts — the web app (app.py) replaces these in Docker
download.py
upload.py
# Reports — live in the volumes, not the image
report_*.txt
# Python cache
__pycache__/
*.pyc
*.pyo
*.pyd
# Environment files — never bake secrets into the image
.env
.env.*
# Editor and OS files
.DS_Store
.vscode/
*.swp
*.swo