Update Makefile build and added docker mariadb

This commit is contained in:
Sai Sanjay 2024-05-30 12:16:14 +00:00
parent ad998910a0
commit 3da78a7b5b
4 changed files with 550 additions and 430 deletions

View File

@ -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 && pnpm install && pnpm run build

View File

@ -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
```

File diff suppressed because it is too large Load Diff

View File

@ -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