No description
  • Go 66.4%
  • JavaScript 19.5%
  • SCSS 9.2%
  • Makefile 3.2%
  • Shell 1.7%
Find a file
Simon Vieille 8ba80fe469
Some checks are pending
ci/woodpecker/push/build Pipeline is pending approval
update readme
2025-08-29 14:55:29 +02:00
.woodpecker add ci 2025-08-29 14:48:34 +02:00
assets reconfigure and apply linter 2025-08-29 11:35:24 +02:00
bin rename file 2025-08-29 12:57:50 +02:00
cmd/server rename file 2025-08-29 12:57:50 +02:00
internal add readme 2025-08-29 12:46:37 +02:00
.eslintrc.js init 2025-08-27 12:41:31 +02:00
.gitignore ignore generated assets 2025-08-29 11:33:38 +02:00
.prettierrc.json init 2025-08-27 12:41:31 +02:00
CHANGELOG.md add changelog 2025-08-29 14:51:17 +02:00
config.ini.example add twitch message handler 2025-08-27 16:24:20 +02:00
go.mod add twitch message handler 2025-08-27 16:24:20 +02:00
go.sum add twitch message handler 2025-08-27 16:24:20 +02:00
Makefile add ci 2025-08-29 14:36:28 +02:00
package-lock.json add readme 2025-08-29 12:46:37 +02:00
package.json reconfigure and apply linter 2025-08-29 11:35:24 +02:00
README.md update readme 2025-08-29 14:55:29 +02:00
webpack.config.js refactor: reorganize archirecture 2025-08-29 11:31:22 +02:00

Owncast webhook server and chat aggregator

This project provides a webhook server for Owncast.

It implements the webhook triggered when a new message is posted in the chat. It also allows retrieving messages from a Twitch channel and displaying them together on a page that can be embedded into OBS.

Installation

Pre-compiled package

Go to releases and download the latest owncast-webhook.

From source

Requirements: nodejs (tested with >=22), golang (tested with >=1.24)

git clone https://gitnet.fr/deblan/owncast-webhook
npm i
make build

Configuration

Server side

cp config.ini.example config.ini

Owncast

Add a webhook (Integration > Webhooks):

  • URL: {server.base_url}/webhook/{server.webhook_secret}/owncast/chat_message
  • Events: When a user sends a chat message

OBS

You can embed the chat using this URL: {server.base_url}/chat/messages

Usage

./owncast-webhook -c ./config.ini