From 4aced43e43ae4f0a88a777370a7471aecb0dc093 Mon Sep 17 00:00:00 2001 From: Lizzy Hunt Date: Sun, 10 Mar 2024 16:47:52 -0600 Subject: [PATCH] add required args --- html/build.sh | 2 ++ html/public/fruitvote/GoPage.php | 2 +- systemd/fruitvote.service | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/html/build.sh b/html/build.sh index b12230e..16de894 100755 --- a/html/build.sh +++ b/html/build.sh @@ -15,6 +15,8 @@ mkdir -p ../dist/fruitvote cd fruitvote go build -o ../../dist/fruitvote/fruitvote cp start.sh ../../dist/fruitvote/start.sh +cp -r templates ../../dist/fruitvote/templates +cp -r fruits.json ../../dist/fruitvote/fruits.json cd .. echo "finished building HTML" diff --git a/html/public/fruitvote/GoPage.php b/html/public/fruitvote/GoPage.php index 7e03c35..d71f545 100644 --- a/html/public/fruitvote/GoPage.php +++ b/html/public/fruitvote/GoPage.php @@ -4,7 +4,7 @@ class GoPage { private $socket; private $template; - public function __construct($page, $socket = "/home/lizzy/fruitvote/http.sock", $template = "../template.html") { + public function __construct($page, $socket = "/home/simponic/fruitvote/http.sock", $template = "../template.html") { $this->page = $page; $this->socket = $socket; $this->template = $template; diff --git a/systemd/fruitvote.service b/systemd/fruitvote.service index 424aaf1..5d5c1bf 100644 --- a/systemd/fruitvote.service +++ b/systemd/fruitvote.service @@ -3,7 +3,7 @@ Description=fruitvote [Service] Type=simple -ExecStart=/usr/bin/nice -n 19 /home/simponic/fruitvote/fruitvote --socket-path /home/simponic/fruitvote/http.sock --users nginx,simponic +ExecStart=/usr/bin/nice -n 19 /home/simponic/fruitvote/fruitvote --socket-path /home/simponic/fruitvote/http.sock --users nginx,simponic --template /home/simponic/fruitvote/templates --fruits /home/simponic/fruitvote/fruits.json --database /home/simponic/fruitvote/fruitvote.db Restart=always [Install]