Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 0 additions & 78 deletions .github/workflows/claude-code-review.yml

This file was deleted.

64 changes: 0 additions & 64 deletions .github/workflows/claude.yml

This file was deleted.

2 changes: 1 addition & 1 deletion infra/pub.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ resource "google_compute_instance" "pub" {

# A token used to publish demo/bbb.hang
# cargo run --bin moq-token -- --key root.jwk sign --root "demo" --publish "" > demo.jwt
demo_token = file("demo.jwt")
demo_token = trimspace(file("demo.jwt"))
})
}

Expand Down
4 changes: 2 additions & 2 deletions infra/relay.tf
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ resource "google_compute_instance" "relay" {

# The root key and token, used to authenticate nodes
# cargo run --bin moq-token -- --key root.jwk generate > root.jwk
root_key = file("root.jwk")
root_key = trimspace(file("root.jwk"))

# cargo run --bin moq-token -- --key root.jwk sign --publish "" --subscribe "" --cluster > cluster.jwt
cluster_token = file("cluster.jwt")
cluster_token = trimspace(file("cluster.jwt"))
})
}

Expand Down