og:image, other SEO and favicons

This commit is contained in:
2025-07-08 23:00:31 +02:00
parent 9e9c0e4b35
commit d222758849
11 changed files with 70 additions and 0 deletions

View File

@ -23,6 +23,7 @@ type Config struct {
Street string
PostalCode string
Village string
Domain string
Port string
TelegramBotToken string
TelegramChatID string
@ -81,6 +82,7 @@ func NewServer() *Server {
Street: getEnv("STREET", "Voorstraat 123"),
PostalCode: getEnv("POSTAL_CODE", "9967 AA"),
Village: getEnv("VILLAGE", "Eenrum"),
Domain: getEnv("DOMAIN", "hogelandlinux.nl"), // Replace with actual domain
Port: ":" + getEnv("PORT", "8080"),
TelegramBotToken: getEnv("TELEGRAM_BOT_TOKEN", ""), // Set this in environment
TelegramChatID: getEnv("TELEGRAM_CHAT_ID", ""), // Set this in environment