38 lines
681 B
Markdown
38 lines
681 B
Markdown
# openvidu-basic-python
|
|
|
|
This is a minimal OpenVidu server application sample built for Python with [Flask](https://flask.palletsprojects.com/). Visit [Application server](https://docs.openvidu.io/en/stable/application-server/) documentation for further context.
|
|
|
|
## Prerequisites
|
|
|
|
- [Python 3](https://www.python.org/downloads/)
|
|
|
|
## Run
|
|
|
|
Download repository
|
|
|
|
```
|
|
git clone git@github.com:OpenVidu/openvidu-tutorials.git
|
|
cd openvidu-tutorials/openvidu-basic-python
|
|
```
|
|
|
|
Create a python3 environment and activate it
|
|
|
|
```
|
|
python3 -m venv venv
|
|
```
|
|
|
|
```
|
|
. venv/bin/activate
|
|
```
|
|
|
|
Install dependencies
|
|
|
|
```
|
|
pip install -r requirements.txt
|
|
```
|
|
|
|
Run the application
|
|
|
|
```
|
|
python3 app.py
|
|
``` |