We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d34651 commit 4868929Copy full SHA for 4868929
packages/master.cfg.py
@@ -9,6 +9,7 @@
9
10
STATE_DIR = Path(".")
11
PORT = 8012
12
+url = f"http://localhost:{PORT}"
13
14
buildbot_nix_config = BuildbotNixConfig(
15
db_url="sqlite:///state.sqlite",
@@ -27,13 +28,14 @@
27
28
eval_worker_count=4,
29
local_workers=4,
30
domain="localhost",
- webhook_base_url=f"http://localhost:{PORT}",
31
- url=f"http://localhost:{PORT}",
+ webhook_base_url=url,
32
+ url=url,
33
)
34
35
c = BuildmasterConfig = dict(
36
title="Hello World CI",
37
titleURL="https://buildbot.github.io/hello-world/",
38
+ buildbotURL=url,
39
configurators=[
40
NixConfigurator(buildbot_nix_config),
41
],
0 commit comments