Move frontend
This commit is contained in:
parent
f89091f3fd
commit
a0a6bd1075
4 changed files with 17 additions and 1 deletions
2
.gitmodules
vendored
2
.gitmodules
vendored
|
@ -1,3 +1,3 @@
|
||||||
[submodule "frontend"]
|
[submodule "frontend"]
|
||||||
path = frontend
|
path = pkg/frontend/frontend
|
||||||
url = https://github.com/home-assistant/frontend.git
|
url = https://github.com/home-assistant/frontend.git
|
||||||
|
|
8
pkg/frontend/frontend.go
Normal file
8
pkg/frontend/frontend.go
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
package frontend
|
||||||
|
|
||||||
|
import (
|
||||||
|
"embed"
|
||||||
|
)
|
||||||
|
|
||||||
|
//go:embed frontend/hass_frontend
|
||||||
|
var Root embed.FS
|
|
@ -1,12 +1,14 @@
|
||||||
package server
|
package server
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"io/fs"
|
||||||
"log"
|
"log"
|
||||||
"net/http"
|
"net/http"
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
"dynatron.me/x/blasphem/pkg/bus"
|
"dynatron.me/x/blasphem/pkg/bus"
|
||||||
"dynatron.me/x/blasphem/pkg/config"
|
"dynatron.me/x/blasphem/pkg/config"
|
||||||
|
"dynatron.me/x/blasphem/pkg/frontend"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Server struct {
|
type Server struct {
|
||||||
|
@ -28,7 +30,13 @@ func New(cfg *config.Config) (*Server, error) {
|
||||||
cfg: cfg,
|
cfg: cfg,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
rootFS, err := fs.Sub(frontend.Root, "frontend/hass_frontend")
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
mux.HandleFunc("/api/websocket", s.wsHandler)
|
mux.HandleFunc("/api/websocket", s.wsHandler)
|
||||||
|
mux.Handle("/", http.FileServer(http.FS(rootFS)))
|
||||||
|
|
||||||
return s, nil
|
return s, nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue