all repos — website @ b0621bf7f6d2909b8573430b9a10326db586909f

My website

move public directory out of git repository
Alan Pearce alan@alanpearce.eu
Sat, 29 Jun 2024 10:40:11 +0200
commit

b0621bf7f6d2909b8573430b9a10326db586909f

parent

37895a7da8dfd3a2d419e62350595bd83cceb434

1 files changed, 13 insertions(+), 7 deletions(-)

jump to
M internal/server/server.gointernal/server/server.go
@@ -7,6 +7,7 @@ "net" 	"net/http"
 	"net/url"
 	"os"
+	"path/filepath"
 	"slices"
 	"strconv"
 	"strings"
@@ -97,6 +98,12 @@ return nil }
 
 func New(runtimeConfig *Config) (*Server, error) {
+	builderConfig := &builder.IOConfig{
+		Source:      "content",
+		Destination: runtimeConfig.Root,
+		Development: runtimeConfig.Development,
+	}
+
 	if !runtimeConfig.Development {
 		vcsConfig := &vcs.Config{}
 		_, err := conf.Parse("", vcsConfig)
@@ -111,7 +118,12 @@ err = os.Chdir(vcsConfig.LocalPath) 		if err != nil {
 			return nil, err
 		}
-		runtimeConfig.Root = "public"
+
+		builderConfig.Source = filepath.Join(vcsConfig.LocalPath, "content")
+
+		publicDir := filepath.Join(runtimeConfig.Root, "public")
+		builderConfig.Destination = publicDir
+		runtimeConfig.Root = publicDir
 	}
 
 	config, err := cfg.GetConfig()
@@ -124,12 +136,6 @@ } 
 	listenAddress := net.JoinHostPort(runtimeConfig.ListenAddress, strconv.Itoa(runtimeConfig.Port))
 	top := http.NewServeMux()
-
-	builderConfig := &builder.IOConfig{
-		Source:      "content",
-		Destination: runtimeConfig.Root,
-		Development: runtimeConfig.Development,
-	}
 
 	err = rebuild(builderConfig, config)
 	if err != nil {