From bff13cd616fa14d084e7cfcebe6b02b12a44b8e7 Mon Sep 17 00:00:00 2001 From: Kai Chappell Date: Thu, 29 Jan 2026 18:00:19 +0000 Subject: [PATCH] Add reporting configuration to default.yaml --- config/default.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/config/default.yaml b/config/default.yaml index 7d02986..3c6d1ee 100644 --- a/config/default.yaml +++ b/config/default.yaml @@ -147,3 +147,26 @@ api: # API server port port: 8000 + +# ============================================================================= +# Report Generation Configuration +# ============================================================================= +reporting: + # Company name displayed in report header + # This appears in the title block and footer of generated reports + company_name: py_dvt_ate + + # Path to company logo image file (PNG or JPEG) + # If null, no logo is displayed in report header + # Example: ./assets/logo.png + logo_path: null + + # Include charts in generated reports + # Charts show voltage vs temperature and results summary + # Set to false for text-only reports (smaller file size) + include_charts: true + + # DPI (dots per inch) for chart images + # Higher values produce sharper charts but larger file sizes + # Recommended: 150 for screen viewing, 300 for print quality + chart_dpi: 150