Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/greyli/twilio-presentation
https://github.com/greyli/twilio-presentation
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/greyli/twilio-presentation
- Owner: greyli
- License: mit
- Created: 2020-12-24T01:01:20.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-02-18T14:33:10.000Z (almost 4 years ago)
- Last Synced: 2024-10-05T22:01:56.309Z (3 months ago)
- Language: JavaScript
- Homepage: https://www.twilio.com/blog/online-presentation-python-javascript-twilio-programmable-video
- Size: 219 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Twilio Presentation
This is a simple online presentation application build with Flask and Twilio Video API.
![](demo.png)
## Installation
Clone the repo and build the environment:
```
$ git clone https://github.com/greyli/twilio-presentation
$ cd twilio-presentation
$ python3 -m venv venv # use "python -m venv venv" on Windows
$ . venv/bin/activate # use "venv\Scripts\activate" on Windows
(venv) $ pip install -r requirements.txt
```Rename the `.env.example` to `.env`, fill the credential variables in it (You will need to register a free [Twilio account](http://www.twilio.com/referral/w6qBg0)).
Run the application with:
```
(venv) $ flask run
```Now open http://localhost:5000/present to start the presentation, then open more tabs on http://localhost:5000 to join the presentation.