This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const plans = { | |
PLAN001A: { | |
monthlyCost: 0, | |
monthlyMinutesIncluded: 2000, | |
monthlyMinutesCap: 2000, | |
maxRoomParticipants: 2, | |
maxApiRooms: 5 | |
}, | |
PLAN049A: { | |
monthlyCost: 49, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>embedded video call</title> | |
</head> | |
<body style="background: -webkit-gradient(linear, left top, left bottom, | |
from(#23cb40), to(#aaaaaa)) fixed;"> | |
<iframe | |
allow="camera,microphone,display" | |
src="https://kwindla.daily.co/hello" | |
height="75%" width="40%" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import cmdLineArgs from 'command-line-args'; | |
import mediasoup from 'mediasoup'; | |
import WebSocket from 'ws'; | |
import { | |
remove, | |
find, | |
sortBy, | |
reverse, | |
} from 'lodash'; |
NewerOlder