├── Dockerfile ├── LICENSE ├── README.md ├── app ├── api.py ├── package-lock.json ├── package.json ├── public │ ├── css │ │ ├── axiforma.css │ │ ├── bootstrap.min.css │ │ ├── googlefonts.css │ │ ├── mdb.min.css │ │ ├── poppins.css │ │ └── style.css │ ├── favicon.ico │ ├── favicon.png │ ├── img │ │ ├── android-icon-192x192.png │ │ ├── apple-icon-114x114.png │ │ ├── apple-icon-120x120.png │ │ ├── apple-icon-144x144.png │ │ ├── apple-icon-152x152.png │ │ ├── apple-icon-180x180.png │ │ ├── apple-icon-57x57.png │ │ ├── apple-icon-60x60.png │ │ ├── apple-icon-72x72.png │ │ ├── apple-icon-76x76.png │ │ ├── card.jpg │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ └── favicon-96x96.png │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── Assets │ │ ├── Axiforma │ │ │ └── Axiforma-Regular.ttf │ │ ├── CallCard │ │ │ ├── 002-video-camera.svg │ │ │ ├── 007-paperclip.svg │ │ │ ├── close.svg │ │ │ ├── pencil.svg │ │ │ ├── phone.svg │ │ │ └── plus.svg │ │ ├── CallControlBar │ │ │ ├── add.svg │ │ │ ├── copy (1).svg │ │ │ ├── link.svg │ │ │ ├── message.svg │ │ │ ├── mic.svg │ │ │ ├── phoneRed.svg │ │ │ └── video.svg │ │ ├── Css │ │ │ └── Font-Awesome.css │ │ ├── Header │ │ │ ├── 1.jpg │ │ │ └── search.svg │ │ ├── Login │ │ │ └── eye.svg │ │ ├── Logo │ │ │ └── TrangoLogo.png │ │ ├── Os │ │ │ ├── android.png │ │ │ ├── ios.png │ │ │ ├── mac.png │ │ │ └── window.png │ │ ├── Poppins │ │ │ ├── OFL.txt │ │ │ ├── Poppins-Black.ttf │ │ │ ├── Poppins-BlackItalic.ttf │ │ │ ├── Poppins-Bold.ttf │ │ │ ├── Poppins-BoldItalic.ttf │ │ │ ├── Poppins-ExtraBold.ttf │ │ │ ├── Poppins-ExtraBoldItalic.ttf │ │ │ ├── Poppins-ExtraLight.ttf │ │ │ ├── Poppins-ExtraLightItalic.ttf │ │ │ ├── Poppins-Italic.ttf │ │ │ ├── Poppins-Light.ttf │ │ │ ├── Poppins-LightItalic.ttf │ │ │ ├── Poppins-Medium.ttf │ │ │ ├── Poppins-MediumItalic.ttf │ │ │ ├── Poppins-Regular.ttf │ │ │ ├── Poppins-SemiBold.ttf │ │ │ ├── Poppins-SemiBoldItalic.ttf │ │ │ ├── Poppins-Thin.ttf │ │ │ └── Poppins-ThinItalic.ttf │ │ ├── Sidebar │ │ │ ├── info.svg │ │ │ ├── logoIcon.png │ │ │ ├── logoIcon@2x.png │ │ │ ├── logoIcon@3x.png │ │ │ └── settings.svg │ │ └── music │ │ │ └── incoming_call_ring.mp3 │ ├── components │ │ ├── AddPeopleSearch │ │ │ ├── AddPeopleSearch.js │ │ │ └── AddPeopleSerch.css │ │ ├── AddPerson │ │ │ ├── AddPerson.css │ │ │ └── AddPerson.js │ │ ├── CallControlBar │ │ │ ├── CallControlBar.css │ │ │ └── CallControlBar.js │ │ ├── CallScreen │ │ │ └── Index.js │ │ ├── CallSignals │ │ │ ├── CallSignals.css │ │ │ └── CallSignals.js │ │ ├── CallerName │ │ │ ├── CallerName.css │ │ │ └── CallerName.js │ │ ├── Dashboard │ │ │ ├── Dashboard.css │ │ │ └── Index.js │ │ ├── FileAccept │ │ │ └── Index.js │ │ ├── FileRequest │ │ │ └── Index.js │ │ ├── Header │ │ │ ├── Header.css │ │ │ └── Index.js │ │ ├── Home │ │ │ └── index.js │ │ ├── JoinRoom │ │ │ ├── Index.js │ │ │ └── JoinRoom.css │ │ ├── ReceiveCall │ │ │ └── Index.js │ │ ├── SearchBar │ │ │ ├── SearchBar.css │ │ │ └── SearchBar.js │ │ ├── Sidebar │ │ │ ├── Index.js │ │ │ └── Sidebar.css │ │ └── Signals │ │ │ └── Index.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── router.js │ ├── serviceWorker.js │ └── setupTests.js └── yarn.lock ├── default ├── dhparam.pem ├── discoveryserver ├── lib │ └── SimpleWebSocketServer │ │ ├── asio_compatibility.hpp │ │ ├── client_ws.hpp │ │ ├── client_wss.hpp │ │ ├── crypto.hpp │ │ ├── mutex.hpp │ │ ├── server_ws.hpp │ │ ├── server_wss.hpp │ │ ├── status_code.hpp │ │ └── utility.hpp └── src │ ├── INIReader.h │ ├── WebSocketMainWS.cpp │ ├── WebSocketMainWS.h │ ├── WebSocketWS.cpp │ ├── WebSocketWS.h │ ├── config.ini │ ├── json.hpp │ ├── main.cpp │ ├── py_fail.py │ └── server_restart.sh ├── nginx-selfsigned.crt ├── nginx-selfsigned.key ├── run.sh └── ssl.conf /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/README.md -------------------------------------------------------------------------------- /app/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/api.py -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/package.json -------------------------------------------------------------------------------- /app/public/css/axiforma.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/public/css/axiforma.css -------------------------------------------------------------------------------- /app/public/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/public/css/bootstrap.min.css -------------------------------------------------------------------------------- /app/public/css/googlefonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/public/css/googlefonts.css -------------------------------------------------------------------------------- /app/public/css/mdb.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/public/css/mdb.min.css -------------------------------------------------------------------------------- /app/public/css/poppins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/public/css/poppins.css -------------------------------------------------------------------------------- /app/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/public/css/style.css -------------------------------------------------------------------------------- /app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/public/favicon.ico -------------------------------------------------------------------------------- /app/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/public/favicon.png -------------------------------------------------------------------------------- /app/public/img/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/public/img/android-icon-192x192.png -------------------------------------------------------------------------------- /app/public/img/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/public/img/apple-icon-114x114.png -------------------------------------------------------------------------------- /app/public/img/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/public/img/apple-icon-120x120.png -------------------------------------------------------------------------------- /app/public/img/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/public/img/apple-icon-144x144.png -------------------------------------------------------------------------------- /app/public/img/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/public/img/apple-icon-152x152.png -------------------------------------------------------------------------------- /app/public/img/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/public/img/apple-icon-180x180.png -------------------------------------------------------------------------------- /app/public/img/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/public/img/apple-icon-57x57.png -------------------------------------------------------------------------------- /app/public/img/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/public/img/apple-icon-60x60.png -------------------------------------------------------------------------------- /app/public/img/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/public/img/apple-icon-72x72.png -------------------------------------------------------------------------------- /app/public/img/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/public/img/apple-icon-76x76.png -------------------------------------------------------------------------------- /app/public/img/card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/public/img/card.jpg -------------------------------------------------------------------------------- /app/public/img/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/public/img/favicon-16x16.png -------------------------------------------------------------------------------- /app/public/img/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/public/img/favicon-32x32.png -------------------------------------------------------------------------------- /app/public/img/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/public/img/favicon-96x96.png -------------------------------------------------------------------------------- /app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/public/index.html -------------------------------------------------------------------------------- /app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/public/logo192.png -------------------------------------------------------------------------------- /app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/public/logo512.png -------------------------------------------------------------------------------- /app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/public/manifest.json -------------------------------------------------------------------------------- /app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/public/robots.txt -------------------------------------------------------------------------------- /app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/App.css -------------------------------------------------------------------------------- /app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/App.js -------------------------------------------------------------------------------- /app/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/App.test.js -------------------------------------------------------------------------------- /app/src/Assets/Axiforma/Axiforma-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Axiforma/Axiforma-Regular.ttf -------------------------------------------------------------------------------- /app/src/Assets/CallCard/002-video-camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/CallCard/002-video-camera.svg -------------------------------------------------------------------------------- /app/src/Assets/CallCard/007-paperclip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/CallCard/007-paperclip.svg -------------------------------------------------------------------------------- /app/src/Assets/CallCard/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/CallCard/close.svg -------------------------------------------------------------------------------- /app/src/Assets/CallCard/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/CallCard/pencil.svg -------------------------------------------------------------------------------- /app/src/Assets/CallCard/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/CallCard/phone.svg -------------------------------------------------------------------------------- /app/src/Assets/CallCard/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/CallCard/plus.svg -------------------------------------------------------------------------------- /app/src/Assets/CallControlBar/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/CallControlBar/add.svg -------------------------------------------------------------------------------- /app/src/Assets/CallControlBar/copy (1).svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/CallControlBar/copy (1).svg -------------------------------------------------------------------------------- /app/src/Assets/CallControlBar/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/CallControlBar/link.svg -------------------------------------------------------------------------------- /app/src/Assets/CallControlBar/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/CallControlBar/message.svg -------------------------------------------------------------------------------- /app/src/Assets/CallControlBar/mic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/CallControlBar/mic.svg -------------------------------------------------------------------------------- /app/src/Assets/CallControlBar/phoneRed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/CallControlBar/phoneRed.svg -------------------------------------------------------------------------------- /app/src/Assets/CallControlBar/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/CallControlBar/video.svg -------------------------------------------------------------------------------- /app/src/Assets/Css/Font-Awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Css/Font-Awesome.css -------------------------------------------------------------------------------- /app/src/Assets/Header/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Header/1.jpg -------------------------------------------------------------------------------- /app/src/Assets/Header/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Header/search.svg -------------------------------------------------------------------------------- /app/src/Assets/Login/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Login/eye.svg -------------------------------------------------------------------------------- /app/src/Assets/Logo/TrangoLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Logo/TrangoLogo.png -------------------------------------------------------------------------------- /app/src/Assets/Os/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Os/android.png -------------------------------------------------------------------------------- /app/src/Assets/Os/ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Os/ios.png -------------------------------------------------------------------------------- /app/src/Assets/Os/mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Os/mac.png -------------------------------------------------------------------------------- /app/src/Assets/Os/window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Os/window.png -------------------------------------------------------------------------------- /app/src/Assets/Poppins/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Poppins/OFL.txt -------------------------------------------------------------------------------- /app/src/Assets/Poppins/Poppins-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Poppins/Poppins-Black.ttf -------------------------------------------------------------------------------- /app/src/Assets/Poppins/Poppins-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Poppins/Poppins-BlackItalic.ttf -------------------------------------------------------------------------------- /app/src/Assets/Poppins/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Poppins/Poppins-Bold.ttf -------------------------------------------------------------------------------- /app/src/Assets/Poppins/Poppins-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Poppins/Poppins-BoldItalic.ttf -------------------------------------------------------------------------------- /app/src/Assets/Poppins/Poppins-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Poppins/Poppins-ExtraBold.ttf -------------------------------------------------------------------------------- /app/src/Assets/Poppins/Poppins-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Poppins/Poppins-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /app/src/Assets/Poppins/Poppins-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Poppins/Poppins-ExtraLight.ttf -------------------------------------------------------------------------------- /app/src/Assets/Poppins/Poppins-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Poppins/Poppins-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /app/src/Assets/Poppins/Poppins-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Poppins/Poppins-Italic.ttf -------------------------------------------------------------------------------- /app/src/Assets/Poppins/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Poppins/Poppins-Light.ttf -------------------------------------------------------------------------------- /app/src/Assets/Poppins/Poppins-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Poppins/Poppins-LightItalic.ttf -------------------------------------------------------------------------------- /app/src/Assets/Poppins/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Poppins/Poppins-Medium.ttf -------------------------------------------------------------------------------- /app/src/Assets/Poppins/Poppins-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Poppins/Poppins-MediumItalic.ttf -------------------------------------------------------------------------------- /app/src/Assets/Poppins/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Poppins/Poppins-Regular.ttf -------------------------------------------------------------------------------- /app/src/Assets/Poppins/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Poppins/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /app/src/Assets/Poppins/Poppins-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Poppins/Poppins-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /app/src/Assets/Poppins/Poppins-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Poppins/Poppins-Thin.ttf -------------------------------------------------------------------------------- /app/src/Assets/Poppins/Poppins-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Poppins/Poppins-ThinItalic.ttf -------------------------------------------------------------------------------- /app/src/Assets/Sidebar/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Sidebar/info.svg -------------------------------------------------------------------------------- /app/src/Assets/Sidebar/logoIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Sidebar/logoIcon.png -------------------------------------------------------------------------------- /app/src/Assets/Sidebar/logoIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Sidebar/logoIcon@2x.png -------------------------------------------------------------------------------- /app/src/Assets/Sidebar/logoIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Sidebar/logoIcon@3x.png -------------------------------------------------------------------------------- /app/src/Assets/Sidebar/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/Sidebar/settings.svg -------------------------------------------------------------------------------- /app/src/Assets/music/incoming_call_ring.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/Assets/music/incoming_call_ring.mp3 -------------------------------------------------------------------------------- /app/src/components/AddPeopleSearch/AddPeopleSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/components/AddPeopleSearch/AddPeopleSearch.js -------------------------------------------------------------------------------- /app/src/components/AddPeopleSearch/AddPeopleSerch.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/components/AddPerson/AddPerson.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/components/AddPerson/AddPerson.css -------------------------------------------------------------------------------- /app/src/components/AddPerson/AddPerson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/components/AddPerson/AddPerson.js -------------------------------------------------------------------------------- /app/src/components/CallControlBar/CallControlBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/components/CallControlBar/CallControlBar.css -------------------------------------------------------------------------------- /app/src/components/CallControlBar/CallControlBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/components/CallControlBar/CallControlBar.js -------------------------------------------------------------------------------- /app/src/components/CallScreen/Index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/components/CallScreen/Index.js -------------------------------------------------------------------------------- /app/src/components/CallSignals/CallSignals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/components/CallSignals/CallSignals.css -------------------------------------------------------------------------------- /app/src/components/CallSignals/CallSignals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/components/CallSignals/CallSignals.js -------------------------------------------------------------------------------- /app/src/components/CallerName/CallerName.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/components/CallerName/CallerName.css -------------------------------------------------------------------------------- /app/src/components/CallerName/CallerName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/components/CallerName/CallerName.js -------------------------------------------------------------------------------- /app/src/components/Dashboard/Dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/components/Dashboard/Dashboard.css -------------------------------------------------------------------------------- /app/src/components/Dashboard/Index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/components/Dashboard/Index.js -------------------------------------------------------------------------------- /app/src/components/FileAccept/Index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/components/FileAccept/Index.js -------------------------------------------------------------------------------- /app/src/components/FileRequest/Index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/components/FileRequest/Index.js -------------------------------------------------------------------------------- /app/src/components/Header/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/components/Header/Header.css -------------------------------------------------------------------------------- /app/src/components/Header/Index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/components/Header/Index.js -------------------------------------------------------------------------------- /app/src/components/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/components/Home/index.js -------------------------------------------------------------------------------- /app/src/components/JoinRoom/Index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/components/JoinRoom/Index.js -------------------------------------------------------------------------------- /app/src/components/JoinRoom/JoinRoom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/components/JoinRoom/JoinRoom.css -------------------------------------------------------------------------------- /app/src/components/ReceiveCall/Index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/components/ReceiveCall/Index.js -------------------------------------------------------------------------------- /app/src/components/SearchBar/SearchBar.css: -------------------------------------------------------------------------------- 1 | .search-bar{ 2 | height: 100%; 3 | /* width: 30%; */ 4 | 5 | } -------------------------------------------------------------------------------- /app/src/components/SearchBar/SearchBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/components/SearchBar/SearchBar.js -------------------------------------------------------------------------------- /app/src/components/Sidebar/Index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/components/Sidebar/Index.js -------------------------------------------------------------------------------- /app/src/components/Sidebar/Sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/components/Sidebar/Sidebar.css -------------------------------------------------------------------------------- /app/src/components/Signals/Index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/components/Signals/Index.js -------------------------------------------------------------------------------- /app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/index.css -------------------------------------------------------------------------------- /app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/index.js -------------------------------------------------------------------------------- /app/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/logo.svg -------------------------------------------------------------------------------- /app/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/router.js -------------------------------------------------------------------------------- /app/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/serviceWorker.js -------------------------------------------------------------------------------- /app/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/src/setupTests.js -------------------------------------------------------------------------------- /app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/app/yarn.lock -------------------------------------------------------------------------------- /default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/default -------------------------------------------------------------------------------- /dhparam.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/dhparam.pem -------------------------------------------------------------------------------- /discoveryserver/lib/SimpleWebSocketServer/asio_compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/discoveryserver/lib/SimpleWebSocketServer/asio_compatibility.hpp -------------------------------------------------------------------------------- /discoveryserver/lib/SimpleWebSocketServer/client_ws.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/discoveryserver/lib/SimpleWebSocketServer/client_ws.hpp -------------------------------------------------------------------------------- /discoveryserver/lib/SimpleWebSocketServer/client_wss.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/discoveryserver/lib/SimpleWebSocketServer/client_wss.hpp -------------------------------------------------------------------------------- /discoveryserver/lib/SimpleWebSocketServer/crypto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/discoveryserver/lib/SimpleWebSocketServer/crypto.hpp -------------------------------------------------------------------------------- /discoveryserver/lib/SimpleWebSocketServer/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/discoveryserver/lib/SimpleWebSocketServer/mutex.hpp -------------------------------------------------------------------------------- /discoveryserver/lib/SimpleWebSocketServer/server_ws.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/discoveryserver/lib/SimpleWebSocketServer/server_ws.hpp -------------------------------------------------------------------------------- /discoveryserver/lib/SimpleWebSocketServer/server_wss.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/discoveryserver/lib/SimpleWebSocketServer/server_wss.hpp -------------------------------------------------------------------------------- /discoveryserver/lib/SimpleWebSocketServer/status_code.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/discoveryserver/lib/SimpleWebSocketServer/status_code.hpp -------------------------------------------------------------------------------- /discoveryserver/lib/SimpleWebSocketServer/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/discoveryserver/lib/SimpleWebSocketServer/utility.hpp -------------------------------------------------------------------------------- /discoveryserver/src/INIReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/discoveryserver/src/INIReader.h -------------------------------------------------------------------------------- /discoveryserver/src/WebSocketMainWS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/discoveryserver/src/WebSocketMainWS.cpp -------------------------------------------------------------------------------- /discoveryserver/src/WebSocketMainWS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/discoveryserver/src/WebSocketMainWS.h -------------------------------------------------------------------------------- /discoveryserver/src/WebSocketWS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/discoveryserver/src/WebSocketWS.cpp -------------------------------------------------------------------------------- /discoveryserver/src/WebSocketWS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/discoveryserver/src/WebSocketWS.h -------------------------------------------------------------------------------- /discoveryserver/src/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/discoveryserver/src/config.ini -------------------------------------------------------------------------------- /discoveryserver/src/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/discoveryserver/src/json.hpp -------------------------------------------------------------------------------- /discoveryserver/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/discoveryserver/src/main.cpp -------------------------------------------------------------------------------- /discoveryserver/src/py_fail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/discoveryserver/src/py_fail.py -------------------------------------------------------------------------------- /discoveryserver/src/server_restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/discoveryserver/src/server_restart.sh -------------------------------------------------------------------------------- /nginx-selfsigned.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/nginx-selfsigned.crt -------------------------------------------------------------------------------- /nginx-selfsigned.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/nginx-selfsigned.key -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/run.sh -------------------------------------------------------------------------------- /ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trango-io/trango-self-hosted/HEAD/ssl.conf --------------------------------------------------------------------------------