summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--contrib/bruno/environments/sellershut.bru4
-rw-r--r--contrib/bruno/health.bru2
-rw-r--r--contrib/bruno/users/get_user.bru2
-rw-r--r--contrib/bruno/users/webfinger.bru2
4 files changed, 7 insertions, 3 deletions
diff --git a/contrib/bruno/environments/sellershut.bru b/contrib/bruno/environments/sellershut.bru
new file mode 100644
index 0000000..f26ca7f
--- /dev/null
+++ b/contrib/bruno/environments/sellershut.bru
@@ -0,0 +1,4 @@
+vars {
+ HUT_HOSTNAME: http://localhost
+ HUT_PORT: 2210
+}
diff --git a/contrib/bruno/health.bru b/contrib/bruno/health.bru
index 44c5410..b07520e 100644
--- a/contrib/bruno/health.bru
+++ b/contrib/bruno/health.bru
@@ -5,7 +5,7 @@ meta {
}
get {
- url: http://localhost:3000
+ url: {{HUT_HOSTNAME}}:{{HUT_PORT}}
body: none
auth: inherit
}
diff --git a/contrib/bruno/users/get_user.bru b/contrib/bruno/users/get_user.bru
index 3981d48..abc0d88 100644
--- a/contrib/bruno/users/get_user.bru
+++ b/contrib/bruno/users/get_user.bru
@@ -5,7 +5,7 @@ meta {
}
get {
- url: http://localhost:3000/users/sellershut
+ url: {{HUT_HOSTNAME}}:{{HUT_PORT}}/users/sellershut
body: none
auth: inherit
}
diff --git a/contrib/bruno/users/webfinger.bru b/contrib/bruno/users/webfinger.bru
index 14acaab..124415c 100644
--- a/contrib/bruno/users/webfinger.bru
+++ b/contrib/bruno/users/webfinger.bru
@@ -5,7 +5,7 @@ meta {
}
get {
- url: http://localhost:3000/.well-known/webfinger?resource=acct:sellershut@localhost
+ url: {{HUT_HOSTNAME}}:{{HUT_PORT}}/.well-known/webfinger?resource=acct:sellershut@localhost
body: none
auth: inherit
}