Change important default env like email to actual existing ones, oops
This commit is contained in:
@ -8,8 +8,8 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
- PORT=8080
|
- PORT=8080
|
||||||
- COMPANY_NAME=Hogeland Linux
|
- COMPANY_NAME=Hogeland Linux
|
||||||
- KVK=12345678
|
- KVK=91927935
|
||||||
- EMAIL=info@hogelandlinux.nl
|
- EMAIL=info@chemistry.software
|
||||||
- PHONE=+31 6 12345678
|
- PHONE=+31 6 12345678
|
||||||
- STREET=Voorstraat 123
|
- STREET=Voorstraat 123
|
||||||
- POSTAL_CODE=9967 AA
|
- POSTAL_CODE=9967 AA
|
||||||
|
4
main.go
4
main.go
@ -82,8 +82,8 @@ func NewServer() *Server {
|
|||||||
// Configuration - can be overridden with environment variables
|
// Configuration - can be overridden with environment variables
|
||||||
config := Config{
|
config := Config{
|
||||||
CompanyName: getEnv("COMPANY_NAME", "Hogeland Linux"),
|
CompanyName: getEnv("COMPANY_NAME", "Hogeland Linux"),
|
||||||
KVK: getEnv("KVK", "12345678"), // Replace with actual KVK number
|
KVK: getEnv("KVK", "91927935"), // Replace with actual KVK number
|
||||||
Email: getEnv("EMAIL", "info@hogelandlinux.nl"),
|
Email: getEnv("EMAIL", "info@chemistry.software"),
|
||||||
Phone: getEnv("PHONE", "+31 6 12345678"),
|
Phone: getEnv("PHONE", "+31 6 12345678"),
|
||||||
Street: getEnv("STREET", "Voorstraat 123"),
|
Street: getEnv("STREET", "Voorstraat 123"),
|
||||||
PostalCode: getEnv("POSTAL_CODE", "9967 AA"),
|
PostalCode: getEnv("POSTAL_CODE", "9967 AA"),
|
||||||
|
Reference in New Issue
Block a user