https://github.com/greyli/twilio-whiteboard
https://github.com/greyli/twilio-whiteboard
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/greyli/twilio-whiteboard
- Owner: greyli
- License: mit
- Created: 2020-12-07T13:12:29.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-16T01:54:08.000Z (over 4 years ago)
- Last Synced: 2025-05-08T23:47:58.261Z (10 days ago)
- Language: JavaScript
- Homepage: https://www.twilio.com/blog/collaborative-whiteboard-python-flask-twilio-sync
- Size: 365 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Twilio Whiteboard
This is a simple collaborative whiteboard build with Flask and Twilio Sync.

## Installation
Clone the repo and build the environment:
```
$ git clone https://github.com/greyli/twilio-whiteboard
$ cd twilio-whiteboard
$ 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 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
```Then open http://localhost:5000 on two or more tabs to test.