Change important default env like email to actual existing ones, oops

This commit is contained in:
2025-09-02 21:21:35 +02:00
parent 8c6f9a18b6
commit d124561ef9
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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"),