{"id":14988470,"url":"https://github.com/srtucker22/glipchat","last_synced_at":"2025-04-07T17:10:41.471Z","repository":{"id":35530005,"uuid":"39800883","full_name":"srtucker22/glipchat","owner":"srtucker22","description":"video chatroom using meteor + webrtc + react + redux","archived":false,"fork":false,"pushed_at":"2017-11-03T16:14:45.000Z","size":44016,"stargazers_count":278,"open_issues_count":9,"forks_count":78,"subscribers_count":22,"default_branch":"master","last_synced_at":"2024-04-13T18:23:40.559Z","etag":null,"topics":["android","cordova","electron","javascript","meteor","react","redux","video-conferencing","webrtc"],"latest_commit_sha":null,"homepage":"https://glipchat.herokuapp.com/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/srtucker22.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-07-27T22:26:01.000Z","updated_at":"2024-02-13T08:52:12.000Z","dependencies_parsed_at":"2022-09-08T19:12:13.763Z","dependency_job_id":null,"html_url":"https://github.com/srtucker22/glipchat","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srtucker22%2Fglipchat","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srtucker22%2Fglipchat/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srtucker22%2Fglipchat/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srtucker22%2Fglipchat/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/srtucker22","download_url":"https://codeload.github.com/srtucker22/glipchat/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247694876,"owners_count":20980733,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","cordova","electron","javascript","meteor","react","redux","video-conferencing","webrtc"],"created_at":"2024-09-24T14:16:46.663Z","updated_at":"2025-04-07T17:10:41.439Z","avatar_url":"https://github.com/srtucker22.png","language":"JavaScript","readme":"# glipchat\n\n* [Overview](#overview)\n* [Live Demo](#live-demo)\n* [Motivation](#motivation)\n* [Installation](#installation)\n* [Electron Notes](#electron-notes)\n* [Android Cordova Notes](#android-cordova-notes)\n* [Resources](#resources)\n* [Contributing](#contributing)\n* [Licence](#licence)\n\n# Overview\nglipchat is a real-time video chatroom application. glipchat is powered by Meteor, with React + Redux + WebRTC on the frontend.\n\nglipchat has been tested on the following:\n- Android 4.3+ cordova app (currently disabled)\n- Chrome\n- Chrome for Android (Android 5+)\n- Firefox\n- OS X (Electron application)\n\nOther browsers and operating systems may not support WebRTC.\n\n# Live Demo\nView the project at [https://glipchat.herokuapp.com/](https://glipchat.herokuapp.com/)\n\n# Motivation\nglipchat's mission is to be a veritable OSS solution for multi-user multi-platform video conferencing -- a product regular people can use and developers can modify and build into their own products.\n\n# Installation\n1. Clone the project `git clone https://github.com/srtucker22/glipchat.git`\n2. Go to the primary directory `cd glipchat`\n3. Add a `settings.json` to the primary directory `touch settings.json`\n4. Add your personal settings for the following services included in glipchat (or remove the ones you don't want)\n\n        {\n          \"admins\": [{\n            \"name\": \"Administrator\",\n            \"email\": \"admin@example.com\",\n            \"roles\": [\"admin\"],\n            \"password\": \"ADMIN_PASSWORD\"\n          }],\n          \"google\" : {\n            \"clientId\" : \"YOUR_CLIENT_ID\",\n            \"clientSecret\" : \"YOUR_CLIENT_SECRET\"\n            \"browserKey\": \"YOUR_BROWSER_KEY\",\n            \"apiKey\": \"YOUR_API_KEY\",\n            \"projectNumber\": \"YOUR_PROJECT_NUMBER\"\n          },\n          \"public\": {\n            \"analyticsSettings\": {\n              \"Google Analytics\": {\"trackingId\": \"YOUR_TRACKING_ID\"},\n              \"Segment.io\" : {\"apiKey\": \"YOUR_API_KEY\"}\n            }\n          }\n        }\n\n5. Run the app with the settings `npm start`\n\n# Electron Notes:\nglipchat uses [electron](https://github.com/electron) to easily transform into a downloadable desktop app. The code for this app is located at [`private/electron`](https://github.com/srtucker22/glipchat/blob/master/private/electron)\n\nWe use [electron-simple-updater](https://github.com/megahertz/electron-simple-updater) for building, publishing, and updating the electron application. View the [README]{https://github.com/srtucker22/glipchat/blob/master/private/electron/README.md} in `private/electron` for details on how to use these tools.\n\nSee [download-button.component.js](https://github.com/srtucker22/glipchat/blob/master/client/components/modules/download-button.component.jsx#L57) for how components reference this directory.\n\n# Android Cordova Notes:\nIn order to run video conferencing on glipchat as a cordova app, you will to have the latest version of Android Studio installed and **you will need to use an actual Android device** (currently tested with devices 4.3+). Plug in your device to your computer via USB and run\n\n`meteor run android-device -p {local port} --settings settings.json`\n\nIn order to use Google auth, you will need to run the application from a live mobiles server (see [OAuth for Mobile Meteor Clients](https://github.com/meteor/meteor/wiki/OAuth-for-mobile-Meteor-clients] for details). To do this, first deploy your meteor application to a live server.\n\n(e.g. `meteor deploy {your-server-url} --settings settings.json`)\n\nOnce the app is successfully deployed, run:\n\n`meteor run android-device --mobile-server {your-server-url} --settings settings.json`\n\nnice additional flags might be:\n`--verbose\n--production`\n\nPlease read the [Meteor Cordova Integration](https://github.com/meteor/meteor/wiki/Meteor-Cordova-integration) docs for more details.\n\n# Application Design Overview\nglipchat is an example of how to create a WebRTC video chatroom and also of how to integrate React with Redux in a Meteor app.\n\nDon't know React or Redux? No problem!\n\nThe best way to describe React is that it is a view layer only.\n\nRedux is a flavor of Flux, and is an architectural pattern that can be used with React to enable one-way data flows to a centralized application data store using an event system.\n\nRead these useful guides to get a quick overview:\n- [ReactJS For Stupid People](http://blog.andrewray.me/reactjs-for-stupid-people/)\n- [Flux For Stupid People](http://blog.andrewray.me/flux-for-stupid-people/)\n- [Redux Docs](http://redux.js.org/)\n\nRouting is done with [React Router](https://github.com/rackt/react-router)\n\nRouting in this application may not be obvious.\nCheck out [routes.js](https://github.com/srtucker22/glipchat/blob/master/client/routes.jsx) for the main router code.\n\nglipchat uses [RocketChat:Streamer](https://github.com/RocketChat/meteor-streamer) to power the WebRTC communication.\n\n# Resources\n- [glipchat (formerly named quasar) meteor lightening talk @MeteorHQ ](https://youtu.be/C0S_QCb6HSM)\n\n# Contributing\nThis project welcomes code contributions, bug reports and feature requests. Please see the guidelines in [CONTRIBUTING.MD](CONTRIBUTING.MD) if you are interested in contributing.\n\n# License\nThe MIT License\n\nCopyright (c) 2016 Glipcode https://glipcode.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsrtucker22%2Fglipchat","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsrtucker22%2Fglipchat","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsrtucker22%2Fglipchat/lists"}