about summary refs log tree commit diff stats
path: root/cmd/server/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/server/main.go')
-rw-r--r--cmd/server/main.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/cmd/server/main.go b/cmd/server/main.go
index 1388463..d73e19f 100644
--- a/cmd/server/main.go
+++ b/cmd/server/main.go
@@ -25,6 +25,13 @@ func main() {
 	}
 	log.Configure(!runtimeConfig.Development)
 
+	tmpdir, err := os.MkdirTemp("", "website")
+	if err != nil {
+		log.Fatal("could not create temporary directory", "error", err)
+	}
+	defer os.RemoveAll(tmpdir)
+	runtimeConfig.Root = tmpdir
+
 	sv, err := server.New(&runtimeConfig)
 	if err != nil {
 		log.Error("could not create server", "error", err)