diff --git a/Makefile b/Makefile index 15594cb..82db66f 100644 --- a/Makefile +++ b/Makefile @@ -36,6 +36,10 @@ $(TARGET): $(VAR) $(CFG) $(SVELTE_TARGETS) $(info ===> BUILD cc-backend) @go build -ldflags=${LD_FLAGS} ./cmd/cc-backend +build: + $(info ===> BUILD cc-backend) + @go build -ldflags=${LD_FLAGS} ./cmd/cc-backend + frontend: $(info ===> BUILD frontend) cd web/frontend && npm install && npm run build diff --git a/README.md b/README.md index 36d3c7d..ad24217 100644 --- a/README.md +++ b/README.md @@ -202,3 +202,9 @@ In case the REST or GraphQL API is changed the according code generators have to - [`gqlgen.yml`](https://github.com/ClusterCockpit/cc-backend/blob/master/gqlgen.yml) Configures the behaviour and generation of [gqlgen](https://github.com/99designs/gqlgen). - [`startDemo.sh`](https://github.com/ClusterCockpit/cc-backend/blob/master/startDemo.sh) is a shell script that sets up demo data, and builds and starts `cc-backend`. + +## Docker Mariadb + +``` + docker run -p 3306:3306 -detach --name some-mariadb --env MARIADB_DATABASE=clustercockpit --env MARIADB_ROOT_PASSWORD=my-secret-pw mariadb:latest +``` \ No newline at end of file diff --git a/build.sh b/build.sh new file mode 100644 index 0000000..4439ce1 --- /dev/null +++ b/build.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +TARGET="./cc-backend" +VAR="./var" +CFG="config.json .env" +FRONTEND="./web/frontend" +VERSION="1.2.2" +GIT_HASH=$(git rev-parse --short HEAD || echo 'development') +CURRENT_TIME=$(date +"%Y-%m-%d:T%H:%M:%S") +LD_FLAGS="-s -X main.date=${CURRENT_TIME} -X main.version=${VERSION} -X main.commit=${GIT_HASH}" + +echo ${LD_FLAGS} + +# build.sh +go build -ldflags="${LD_FLAGS}" ./cmd/cc-backend \ No newline at end of file diff --git a/cmd/cc-backend/main.go b/cmd/cc-backend/main.go index c10bfb2..6f4cd05 100644 --- a/cmd/cc-backend/main.go +++ b/cmd/cc-backend/main.go @@ -337,7 +337,13 @@ func main() { rw.Header().Add("Content-Type", "text/html; charset=utf-8") web.RenderTemplate(rw, "privacy.tmpl", &web.Page{Title: "Privacy", Build: buildInfo}) }) - // r.NotFoundHandler + + r.NotFoundHandler = http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) { + rw.WriteHeader(http.StatusNotFound) + rw.Header().Add("Content-Type", "text/html; charset=utf-8") + web.RenderTemplate(rw, "404.tmpl", &web.Page{Title: "Page not found", Build: buildInfo}) + }) +- secured := r.PathPrefix("/").Subrouter() diff --git a/web/frontend/rollup.config.mjs b/web/frontend/rollup.config.mjs index 384d5c0..db93b6d 100644 --- a/web/frontend/rollup.config.mjs +++ b/web/frontend/rollup.config.mjs @@ -52,7 +52,7 @@ const entrypoint = (name, path) => ({ // we'll extract any component CSS out into // a separate file - better for performance css({ output: `${name}.css` }), - livereload('public') + // livereload('public') ], watch: { clearScreen: false