From d124561ef95d9e815115f4995f9bda6963b4cdaf Mon Sep 17 00:00:00 2001 From: bdnugget Date: Tue, 2 Sep 2025 21:21:35 +0200 Subject: [PATCH] Change important default env like email to actual existing ones, oops --- docker-compose.yml | 4 ++-- main.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index a873944..958d2d9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,8 +8,8 @@ services: environment: - PORT=8080 - COMPANY_NAME=Hogeland Linux - - KVK=12345678 - - EMAIL=info@hogelandlinux.nl + - KVK=91927935 + - EMAIL=info@chemistry.software - PHONE=+31 6 12345678 - STREET=Voorstraat 123 - POSTAL_CODE=9967 AA diff --git a/main.go b/main.go index 06762aa..563e47d 100644 --- a/main.go +++ b/main.go @@ -82,8 +82,8 @@ func NewServer() *Server { // Configuration - can be overridden with environment variables config := Config{ CompanyName: getEnv("COMPANY_NAME", "Hogeland Linux"), - KVK: getEnv("KVK", "12345678"), // Replace with actual KVK number - Email: getEnv("EMAIL", "info@hogelandlinux.nl"), + KVK: getEnv("KVK", "91927935"), // Replace with actual KVK number + Email: getEnv("EMAIL", "info@chemistry.software"), Phone: getEnv("PHONE", "+31 6 12345678"), Street: getEnv("STREET", "Voorstraat 123"), PostalCode: getEnv("POSTAL_CODE", "9967 AA"),