Erweiterungen

This commit is contained in:
2025-09-19 21:54:12 +02:00
parent 067700fad1
commit 17b7cc132c
4 changed files with 3 additions and 10 deletions

View File

@@ -4,7 +4,8 @@
"Bash(./mvnw clean compile -q)",
"mcp__ide__getDiagnostics",
"Bash(find:*)",
"Bash(./mvnw:*)"
"Bash(./mvnw:*)",
"Bash(rm:*)"
],
"deny": [],
"ask": []

View File

@@ -16,4 +16,4 @@ Create tests under `src/test/java` mirroring the production package path. Name u
History currently uses brief German titles; shift to imperative, scoped summaries such as `feat: add PDF mailer` or `fix: guard MQTT reconnects`. Keep unrelated updates out of the same commit and exclude artifacts like `node_modules/` or `target/`. Pull requests should explain the motivation, link issues, note config or data-seed impacts, and attach screenshots or screencasts when Vaadin views change. List manual verification steps and flag any migrations or bundle adjustments for reviewers.
## Security & Configuration Tips
External service credentials for MongoDB, SMTP, and MQTT belong in environment variables or a developer-specific `application-local.properties` kept out of version control. Document default ports and topics when touching `MqttConfig` or Zeroconf publishers so ops can replicate environments. For two-factor flows, keep shared secrets in secure storage and avoid logging codes during development.
External service credentials for MongoDB, SMTP, and MQTT belong in environment variables or a developer-specific `application-local.properties` kept out of version control. Document default ports and topics when touching `MqttConfig` so ops can replicate environments. For two-factor flows, keep shared secrets in secure storage and avoid logging codes during development.

View File

@@ -13,11 +13,6 @@ import java.util.List;
@Service
public class SystemInvoiceService {
public byte[] generateInvoicePdf(SystemInvoiceData systemInvoiceData) throws Exception {
// Generate PDF using HTML to PDF conversion
return generateInvoicePdfFromHtml();
}
public byte[] generateInvoicePdfFromHtml() throws Exception {
// Read the HTML template
String htmlContent = readHtmlTemplate();

View File

@@ -1,3 +0,0 @@
// Zeroconf removed from project.
// This file intentionally left without any classes to eliminate any
// zeroconf-related beans or code.