├── .github └── workflows │ ├── Deployment.yml │ ├── codeql-analysis.yml │ ├── docker-publish.yml │ └── main.yml ├── .gitignore ├── Procfile ├── README.md ├── client ├── .firebase │ └── hosting.YnVpbGQ.cache ├── .firebaserc ├── .gitignore ├── firebase.json ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── home.png │ ├── home2.png │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── Components │ ├── Editor │ │ ├── Editor.css │ │ ├── Editor.js │ │ └── Editor.scss │ ├── Footer │ │ ├── Footer.css │ │ ├── Footer.js │ │ └── Footer.scss │ ├── Home │ │ ├── Home.css │ │ ├── Home.js │ │ └── Home.scss │ ├── Join │ │ ├── Join.css │ │ ├── Join.js │ │ └── Join.scss │ ├── Meet │ │ ├── Meet.css │ │ ├── Meet.js │ │ └── Meet.scss │ ├── Messages │ │ ├── Message.js │ │ ├── Messages.css │ │ ├── Messages.js │ │ └── Messages.scss │ ├── Navbar │ │ ├── Navbar.css │ │ ├── Navbar.js │ │ └── Navbar.scss │ ├── Notes │ │ ├── Notes.css │ │ ├── Notes.js │ │ └── Notes.scss │ └── Options │ │ ├── Options.css │ │ ├── Options.js │ │ └── Options.scss │ ├── SocketContext.js │ ├── assets │ ├── github.png │ ├── heart.png │ ├── home.png │ ├── home2.png │ ├── homeVideo.mp4 │ ├── homeVideo1.mp4 │ ├── interview.png │ ├── linkedin.png │ ├── meeting.png │ ├── note.png │ ├── note1.png │ ├── note2.png │ ├── online-interview.png │ ├── styles │ │ └── _mixins.scss │ ├── video-call.png │ └── video-call.svg │ ├── common │ ├── AntSwitch.js │ ├── Spinner.js │ ├── spin.gif │ └── spin1.gif │ ├── constants.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js ├── package.json └── server.js /.github/workflows/Deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/.github/workflows/Deployment.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node server.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/README.md -------------------------------------------------------------------------------- /client/.firebase/hosting.YnVpbGQ.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/.firebase/hosting.YnVpbGQ.cache -------------------------------------------------------------------------------- /client/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/.firebaserc -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/firebase.json -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/public/home.png -------------------------------------------------------------------------------- /client/public/home2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/public/home2.png -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/App.css -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/App.test.js -------------------------------------------------------------------------------- /client/src/Components/Editor/Editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Editor/Editor.css -------------------------------------------------------------------------------- /client/src/Components/Editor/Editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Editor/Editor.js -------------------------------------------------------------------------------- /client/src/Components/Editor/Editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Editor/Editor.scss -------------------------------------------------------------------------------- /client/src/Components/Footer/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Footer/Footer.css -------------------------------------------------------------------------------- /client/src/Components/Footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Footer/Footer.js -------------------------------------------------------------------------------- /client/src/Components/Footer/Footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Footer/Footer.scss -------------------------------------------------------------------------------- /client/src/Components/Home/Home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Home/Home.css -------------------------------------------------------------------------------- /client/src/Components/Home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Home/Home.js -------------------------------------------------------------------------------- /client/src/Components/Home/Home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Home/Home.scss -------------------------------------------------------------------------------- /client/src/Components/Join/Join.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Join/Join.css -------------------------------------------------------------------------------- /client/src/Components/Join/Join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Join/Join.js -------------------------------------------------------------------------------- /client/src/Components/Join/Join.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Join/Join.scss -------------------------------------------------------------------------------- /client/src/Components/Meet/Meet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Meet/Meet.css -------------------------------------------------------------------------------- /client/src/Components/Meet/Meet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Meet/Meet.js -------------------------------------------------------------------------------- /client/src/Components/Meet/Meet.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Meet/Meet.scss -------------------------------------------------------------------------------- /client/src/Components/Messages/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Messages/Message.js -------------------------------------------------------------------------------- /client/src/Components/Messages/Messages.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Messages/Messages.css -------------------------------------------------------------------------------- /client/src/Components/Messages/Messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Messages/Messages.js -------------------------------------------------------------------------------- /client/src/Components/Messages/Messages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Messages/Messages.scss -------------------------------------------------------------------------------- /client/src/Components/Navbar/Navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Navbar/Navbar.css -------------------------------------------------------------------------------- /client/src/Components/Navbar/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Navbar/Navbar.js -------------------------------------------------------------------------------- /client/src/Components/Navbar/Navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Navbar/Navbar.scss -------------------------------------------------------------------------------- /client/src/Components/Notes/Notes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Notes/Notes.css -------------------------------------------------------------------------------- /client/src/Components/Notes/Notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Notes/Notes.js -------------------------------------------------------------------------------- /client/src/Components/Notes/Notes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Notes/Notes.scss -------------------------------------------------------------------------------- /client/src/Components/Options/Options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Options/Options.css -------------------------------------------------------------------------------- /client/src/Components/Options/Options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Options/Options.js -------------------------------------------------------------------------------- /client/src/Components/Options/Options.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/Components/Options/Options.scss -------------------------------------------------------------------------------- /client/src/SocketContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/SocketContext.js -------------------------------------------------------------------------------- /client/src/assets/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/assets/github.png -------------------------------------------------------------------------------- /client/src/assets/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/assets/heart.png -------------------------------------------------------------------------------- /client/src/assets/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/assets/home.png -------------------------------------------------------------------------------- /client/src/assets/home2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/assets/home2.png -------------------------------------------------------------------------------- /client/src/assets/homeVideo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/assets/homeVideo.mp4 -------------------------------------------------------------------------------- /client/src/assets/homeVideo1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/assets/homeVideo1.mp4 -------------------------------------------------------------------------------- /client/src/assets/interview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/assets/interview.png -------------------------------------------------------------------------------- /client/src/assets/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/assets/linkedin.png -------------------------------------------------------------------------------- /client/src/assets/meeting.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/assets/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/assets/note.png -------------------------------------------------------------------------------- /client/src/assets/note1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/assets/note1.png -------------------------------------------------------------------------------- /client/src/assets/note2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/assets/note2.png -------------------------------------------------------------------------------- /client/src/assets/online-interview.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/assets/styles/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/assets/styles/_mixins.scss -------------------------------------------------------------------------------- /client/src/assets/video-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/assets/video-call.png -------------------------------------------------------------------------------- /client/src/assets/video-call.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/assets/video-call.svg -------------------------------------------------------------------------------- /client/src/common/AntSwitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/common/AntSwitch.js -------------------------------------------------------------------------------- /client/src/common/Spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/common/Spinner.js -------------------------------------------------------------------------------- /client/src/common/spin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/common/spin.gif -------------------------------------------------------------------------------- /client/src/common/spin1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/common/spin1.gif -------------------------------------------------------------------------------- /client/src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/constants.js -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/logo.svg -------------------------------------------------------------------------------- /client/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/reportWebVitals.js -------------------------------------------------------------------------------- /client/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/client/src/setupTests.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/Live-Video-Chat-Application-for-Interview-purposes/HEAD/server.js --------------------------------------------------------------------------------