Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

.github @hubsfoundation/Operations
4 changes: 2 additions & 2 deletions .github/workflows/dialog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ on:

jobs:
turkeyGitops:
uses: mozilla/hubs-ops/.github/workflows/turkeyGitops.yml@master
uses: Hubs-Foundation/hubs-ops/.github/workflows/turkeyGitops.yml@master
with:
registry: mozillareality
registry: hubsfoundation
dockerfile: Dockerfile
secrets:
DOCKER_HUB_PWD: ${{ secrets.DOCKER_HUB_PWD }}
2 changes: 0 additions & 2 deletions CODEOWNERS

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ Mediasoup based WebRTC SFU for Hubs.
1. Clone repo
2. In root project folder, `npm ci` (this may take a while).
3. Create a folder in the root project folder called `certs` if needed (see steps 4 & 5).
4. Add the ssl cert and key to the `certs` folder as `fullchain.pem` and `privkey.pem`, or set the path to these in your shell via `HTTPS_CERT_FULLCHAIN` and `HTTPS_CERT_PRIVKEY` respectively. You can provide these certs yourself or use the ones available in https://github.com/mozilla/reticulum/tree/master/priv (`dev-ssl.cert` and `dev-ssl.key`).
4. Add the ssl cert and key to the `certs` folder as `fullchain.pem` and `privkey.pem`, or set the path to these in your shell via `HTTPS_CERT_FULLCHAIN` and `HTTPS_CERT_PRIVKEY` respectively. You can provide these certs yourself or use the ones available in https://github.com/Hubs-Foundatioin/reticulum/tree/master/priv (`dev-ssl.cert` and `dev-ssl.key`).

5. Add the reticulum permissions public key to the `certs` folder as `perms.pub.pem`, or set the path to the file in your shell via `AUTH_KEY`.

* If using one of the public keys from hubs-ops (located in https://github.com/mozilla/hubs-ops/tree/master/ansible/roles/janus/files), you will need to convert it to standard pem format.
* If using one of the public keys from hubs-ops (located in https://github.com/Hubs-Foundation/hubs-ops/tree/master/ansible/roles/janus/files), you will need to convert it to standard pem format.
* e.g. for use with dev.reticulum.io: `openssl rsa -in perms.pub.der.dev -inform DER -RSAPublicKey_in -out perms.pub.pem`

6. Start dialog with `MEDIASOUP_LISTEN_IP=XXX.XXX.XXX.XXX MEDIASOUP_ANNOUNCED_IP=XXX.XXX.XXX.XXX npm start` where `XXX.XXX.XXX.XXX` is the local IP address of the machine running the server. (In the case of a VM, this should be the internal IP address of the VM).
Expand Down
10 changes: 5 additions & 5 deletions habitat/plan.sh
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
pkg_name=janus-gateway
pkg_origin=mozillareality
pkg_maintainer="Mozilla Mixed Reality <mixreality@mozilla.com>"
pkg_origin=hubsfoundation
pkg_maintainer="Hubs Foundation <info@hubsfoundation.org>"
pkg_version="2.0.1"
pkg_description="A simple mediasoup based SFU"

pkg_deps=(
core/node/18
mozillareality/gcc-libs
mozillareality/openssl
hubsfoundation/gcc-libs
hubsfoundation/openssl
)

pkg_build_deps=(
core/git
mozillareality/gcc
hubsfoundation/gcc
core/make
core/patchelf
)
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"name": "dialog",
"version": "0.0.1",
"description": "WebRTC SFU based on mediasoup",
"author": "Mozilla Mixed Reality <mixreality@mozilla.com>",
"author": "Hubs Foundation <info@hubsfoundation.org> (https://hubsfoundation.org)",
"contributors": ["Mozilla Mixed Reality [original author]"],
"license": "MPL-2.0",
"main": "index.js",
"scripts": {
Expand Down
Loading