Compare commits

..

2 Commits

Author SHA1 Message Date
Thomas Klaehn
7575193024 Fix: build
Signed-off-by: Thomas Klaehn <thomas.klaehn@perinet.io>
2023-02-09 10:22:38 +01:00
Thomas Klaehn
109b64cdbd Fix: webui 2023-02-09 10:22:24 +01:00
10 changed files with 10 additions and 10 deletions

4
.gitignore vendored
View File

@ -1,10 +1,8 @@
/node_modules/ /node_modules/
/public/build/ /build/
.DS_Store .DS_Store
__debug_bin __debug_bin
bin/
static/
homeservice.tar.gz homeservice.tar.gz

View File

@ -7,7 +7,7 @@ SYSTEM_DIR := /usr/lib/systemd/system
WEB_DIR := /var/lib/$(PROJECT_NAME) WEB_DIR := /var/lib/$(PROJECT_NAME)
CONFIG_FILE := config/config.json CONFIG_FILE := config/config.json
BIN_FILE := bin/$(PROJECT_NAME) BIN_FILE := build/bin/$(PROJECT_NAME)
UNIT_FILE := $(PROJECT_NAME).service UNIT_FILE := $(PROJECT_NAME).service
README_FILE := README.md README_FILE := README.md

View File

@ -74,7 +74,7 @@ func main() {
logger.Println("starting") logger.Println("starting")
var webui_path string var webui_path string
flag.StringVar(&webui_path, "d", "./static", "Specify path to serve the web ui. Default is ./static") flag.StringVar(&webui_path, "d", "./build/webui", "Specify path to serve the web ui. Default is ./static")
flag.Parse() flag.Parse()
// MQTT connection // MQTT connection

View File

@ -1 +1,2 @@
export const prerender = true; export const prerender = true;
export const trailingSlash = 'always';

View File

@ -8,8 +8,8 @@
</svelte:head> </svelte:head>
<section id='content_id' class='content'> <section id='content_id' class='content'>
<h1>Home</h1>
<figure> <figure>
<img src={icon} alt="Home" width=150/> <img src={icon} alt="Home" width=150/>
</figure> </figure>
<h1>Home</h1>
</section> </section>

View File

@ -1 +1,2 @@
export const prerender = true; export const prerender = true;
export const trailingSlash = 'always';

View File

@ -113,10 +113,10 @@
</svelte:head> </svelte:head>
<section id='content_id' class='content'> <section id='content_id' class='content'>
<h1>Chicken</h1>
<figure> <figure>
<img src={icon} alt="Chicken" width=150/> <img src={icon} alt="Chicken" width=150/>
</figure> </figure>
<h1>Chicken</h1>
<hr> <hr>
<table> <table>
<tr> <tr>

View File

@ -1 +1,2 @@
export const prerender = true; export const prerender = true;
export const trailingSlash = 'always';

View File

@ -34,9 +34,9 @@
</svelte:head> </svelte:head>
<section id='content_id' class='content'> <section id='content_id' class='content'>
<h1>{temperature_value} {temperature_unit}</h1> <h1>Sauna</h1>
<figure> <figure>
<img src={icon} alt="Sauna" width=150/> <img src={icon} alt="Sauna" width=150/>
</figure> </figure>
<h1>Sauna</h1> <h1>{temperature_value} {temperature_unit}</h1>
</section> </section>

View File

@ -17,4 +17,3 @@ const config = {
}; };
export default config; export default config;
export const trailingSlash = 'always';