From 5c760ea76f912afb0f8a373334b1a09927802872 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Thu, 12 Mar 2026 21:45:48 -0500 Subject: [PATCH] update config examples --- src/content/docs/examples/dial-a-cue.mdx | 2 ++ src/content/docs/examples/http-to-osc.mdx | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/content/docs/examples/dial-a-cue.mdx b/src/content/docs/examples/dial-a-cue.mdx index ba5363f..1454c81 100644 --- a/src/content/docs/examples/dial-a-cue.mdx +++ b/src/content/docs/examples/dial-a-cue.mdx @@ -9,6 +9,8 @@ import { Code } from '@astrojs/starlight/components'; This config starts an SIP server listening on port `5060`. Any incoming call will result in a OSC message being sent to `127.0.0.1:53000` with the address set to [fire a QLab cue](https://qlab.app/docs/v5/scripting/osc-dictionary-v5/#/cue/{cue_number}/go) with the dialed number as the cue number. This was tested with a cheap SIP gateway like [this one](https://www.grandstream.com/products/gateways-and-atas/analog-telephone-adaptors/product/ht802). export const example = ` +api: + port: 8080 modules: - id: sip type: sip.call.server diff --git a/src/content/docs/examples/http-to-osc.mdx b/src/content/docs/examples/http-to-osc.mdx index e694d36..cbc7ca8 100644 --- a/src/content/docs/examples/http-to-osc.mdx +++ b/src/content/docs/examples/http-to-osc.mdx @@ -10,6 +10,8 @@ This config starts an HTTP server listening on port `3000`. Any HTTP request com export const example = ` +api: + port: 8080 modules: - id: http type: http.server