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
| vox.connect(); | |
| vox.addEventListener(VoxImplant.Events.ConnectionEstablished, handleConnectionEstablished); | |
| vox.addEventListener(VoxImplant.Events.ConnectionFailed, handleConnectionFailed); | |
| vox.addEventListener(VoxImplant.Events.ConnectionClosed, handleConnectionClosed); | |
| function handleConnectionEstablished() { | |
| if (typeof console != "undefined") console.log("Connected to VoxImplant:" +vox.connected()); | |
| } | |
| function handleConnectionFailed(e) { |
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
| var vox = VoxImplant.getInstance(); | |
| vox.init({micRequired: true}); | |
| vox.addEventListener(VoxImplant.Events.SDKReady, handleSDKReady); |
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
| <script type="text/javascript" src="//cdn.voximplant.com/edge/voximplant.min.js"></script> |
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
| #!/bin/bash | |
| git pull | |
| app/console cache:clear --env=dev | |
| app/console cache:clear --env=prod | |
| chmod -R 777 app/cache/ | |
| chmod -R 777 app/logs/ |
NewerOlder