2021-12-08 12:09:45 +01:00
2021-12-08 10:12:19 +01:00
2021-12-08 12:09:45 +01:00
2021-12-08 10:12:19 +01:00
2021-12-08 11:50:47 +01:00
2021-12-08 10:09:47 +01:00
2021-12-08 10:14:45 +01:00
2021-10-26 10:22:02 +02:00
2019-04-29 10:21:48 +02:00
2021-11-26 10:35:07 +01:00
2021-12-08 11:50:47 +01:00

ClusterCockpit with a Golang backend (Only supports archived jobs)

Build

Run server

# The frontend is a submodule, so use `--recursive`
git clone --recursive git@github.com:ClusterCockpit/cc-jobarchive.git

# Prepare frontend
cd ./cc-jobarchive/frontend
yarn install
yarn build

cd ..
go get
go build

# The job-archive directory must be organised the same way as
# as for the regular ClusterCockpit.
ln -s <your-existing-job-archive> ./var/job-archive

# Create empty job.db (Will be initialized as SQLite3 database)
touch ./var/job.db

# This will first initialize the job.db database by traversing all
# `meta.json` files in the job-archive. After that, a HTTP server on
# the port 8080 will be running. The `--init-db` is only needed the first time.
./cc-jobarchive --init-db

# Show other options:
./cc-jobarchive --help

Update GraphQL schema

This project uses gqlgen for the GraphQL API. The schema can be found in ./graph/schema.graphqls. After changing it, you need to run go run github.com/99designs/gqlgen which will update graph/model. In case new resolvers are needed, they will be inserted into graph/schema.resolvers.go, where you will need to implement them.

Description
Backend for ClusterCockpit Monitoring Framework. GitHub Mirror
Readme MIT 14 MiB
Languages
Go 54.2%
Svelte 41.6%
JavaScript 3%
Perl 0.7%
Makefile 0.3%
Other 0.1%