Skip to content

Commit c54dee6

Browse files
committed
refactor: Rename the webhook to webhook-fly-secrets-updater
1 parent a7e6a78 commit c54dee6

7 files changed

Lines changed: 15 additions & 16 deletions

File tree

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
resolver = "2"
33
members = [
44
"activity-fly-http",
5-
"webhook-secrets-endpoint",
5+
"webhook-fly-secrets-updater",
66
]
77

88
[workspace.package]

Justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
build:
22
(cd activity-fly-http && cargo build --release)
3-
(cd webhook-secrets-endpoint && cargo build --release)
3+
(cd webhook-fly-secrets-updater && cargo build --release)
44

55
serve:
66
obelisk server run --config obelisk-local.toml

obelisk-local.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,14 @@ forward_stdout = "stderr"
1414
forward_stderr = "stderr"
1515

1616
[[webhook_endpoint]]
17-
name = "webhook_secrets_endpoint"
18-
location.path = "${OBELISK_TOML_DIR}/target/wasm32-wasip2/release/fly_webhook_secrets_endpoint.wasm"
17+
name = "webhook_fly_secrets_updater"
18+
location.path = "${OBELISK_TOML_DIR}/target/wasm32-wasip2/release/webhook_fly_secrets_updater.wasm"
1919
http_server = "webhook_server"
2020
routes = [{ methods = ["POST"], route = "/" }]
2121
env_vars = ["FLY_API_TOKEN"]
2222
forward_stdout = "stderr"
2323
forward_stderr = "stderr"
2424

25-
2625
[[http_server]]
2726
name = "webhook_server"
2827
listening_addr = "0.0.0.0:9090"
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "fly-webhook-secrets-endpoint"
2+
name = "webhook-fly-secrets-updater"
33
authors.workspace = true
44
edition.workspace = true
55
license.workspace = true

0 commit comments

Comments
 (0)