Change important default env like email to actual existing ones, oops
This commit is contained in:
@ -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
|
||||
|
4
main.go
4
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"),
|
||||
|
Reference in New Issue
Block a user