From e424dac826c4302d188b2b7de7d7b51f0ec1ffb1 Mon Sep 17 00:00:00 2001 From: maddalax Date: Tue, 5 Nov 2024 15:09:22 -0600 Subject: [PATCH 1/3] test --- htmgo-site/main.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/htmgo-site/main.go b/htmgo-site/main.go index 4bafd98..904bf11 100644 --- a/htmgo-site/main.go +++ b/htmgo-site/main.go @@ -1,6 +1,7 @@ package main import ( + "fmt" "github.com/maddalax/htmgo/framework/h" "github.com/maddalax/htmgo/framework/service" "htmgo-site/__htmgo" @@ -19,6 +20,8 @@ func main() { service.Set(locator, service.Singleton, markdown.NewRenderer) service.Set(locator, service.Singleton, cache.NewSimpleCache) + fmt.Printf("starting up\n") + h.Start(h.AppOpts{ ServiceLocator: locator, LiveReload: true, From 142411c0e54a633854e244ca0a867bd41468fec4 Mon Sep 17 00:00:00 2001 From: maddalax Date: Tue, 5 Nov 2024 15:13:05 -0600 Subject: [PATCH 2/3] test --- htmgo-site/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htmgo-site/main.go b/htmgo-site/main.go index 904bf11..9e45a56 100644 --- a/htmgo-site/main.go +++ b/htmgo-site/main.go @@ -20,7 +20,7 @@ func main() { service.Set(locator, service.Singleton, markdown.NewRenderer) service.Set(locator, service.Singleton, cache.NewSimpleCache) - fmt.Printf("starting up\n") + fmt.Printf("starting up server\n") h.Start(h.AppOpts{ ServiceLocator: locator, From 841262341ac64ea7bd698abc0107cc3f88be80d5 Mon Sep 17 00:00:00 2001 From: maddalax Date: Tue, 5 Nov 2024 15:17:12 -0600 Subject: [PATCH 3/3] test --- htmgo-site/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htmgo-site/main.go b/htmgo-site/main.go index 9e45a56..5c6a484 100644 --- a/htmgo-site/main.go +++ b/htmgo-site/main.go @@ -20,7 +20,7 @@ func main() { service.Set(locator, service.Singleton, markdown.NewRenderer) service.Set(locator, service.Singleton, cache.NewSimpleCache) - fmt.Printf("starting up server\n") + fmt.Printf("starting up server2\n") h.Start(h.AppOpts{ ServiceLocator: locator,