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
declare module 'twilio-video' { | |
// this actually returns a CancelablePromise | |
export function connect(token: string, options: ConnectOptions): Promise<Room>; | |
export function createLocalTracks(options?: CreateLocalTracksOptions): Promise<LocalTrack[]>; | |
export interface ConnectOptions { | |
name: string; | |
tracks: (LocalTrack | MediaStreamTrack)[]; | |
} |
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
<VirtualHost *> | |
ServerName hostsite.com # Do you have this in your /etc/hosts file?? You should add hostsite.com in the line of 127.0.0.1 | |
WSGIScriptAlias / /var/www/ragetext/flask_rage.wsgi | |
</VirtualHost> |