diff website/src/init.luan @ 1929:31f006c64782

translation
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 01 May 2025 18:31:05 -0600
parents 50e570b598b2
children
line wrap: on
line diff
--- a/website/src/init.luan	Sun Apr 27 04:24:08 2025 -0600
+++ b/website/src/init.luan	Thu May 01 18:31:05 2025 -0600
@@ -1,5 +1,12 @@
+local Luan = require "luan:Luan.luan"
+local error = Luan.error
+local Http = require "luan:http/Http.luan"
 local Hosted = require "luan:host/Hosted.luan"
+local Shared = require "site:/lib/Shared.luan"
+local Logging = require "luan:logging/Logging.luan"
+local logger = Logging.logger "init"
 
-Hosted.set_https and Hosted.set_https(true)
+
+Hosted.set_https and Hosted.set_https( Http.domain ~= "www.me.luan.software" )
 
 return true