Unify server application READMEs
This commit is contained in:
parent
66a90ca1f1
commit
b4ed8f3c7c
@ -2,14 +2,21 @@
|
||||
|
||||
This is a minimal OpenVidu server application sample built for .NET. Visit [Application server](https://docs.openvidu.io/en/stable/application-server/) documentation for further context.
|
||||
|
||||
Prerequisites:
|
||||
## Prerequisites
|
||||
|
||||
- [.NET 6.0](https://dotnet.microsoft.com/en-us/download)
|
||||
|
||||
Run the application:
|
||||
## Run
|
||||
|
||||
Download repository
|
||||
|
||||
```
|
||||
git clone git@github.com:OpenVidu/openvidu-tutorials.git
|
||||
cd openvidu-tutorials/openvidu-basic-dotnet
|
||||
```
|
||||
|
||||
Run the application
|
||||
|
||||
```
|
||||
dotnet run
|
||||
```
|
||||
@ -4,15 +4,22 @@ This is a minimal OpenVidu server application sample built for Java with Spring
|
||||
|
||||
It internally uses [openvidu-java-client SDK](https://docs.openvidu.io/en/stable/reference-docs/openvidu-java-client/).
|
||||
|
||||
Prerequisites:
|
||||
## Prerequisites
|
||||
|
||||
- [Java (>=11)](https://www.java.com/en/download/manual.jsp)
|
||||
- [Maven](https://maven.apache.org)
|
||||
|
||||
To run the application:
|
||||
## Run
|
||||
|
||||
Download repository
|
||||
|
||||
```
|
||||
git clone git@github.com:OpenVidu/openvidu-tutorials.git
|
||||
cd openvidu-tutorials/openvidu-basic-java
|
||||
```
|
||||
|
||||
Run the application
|
||||
|
||||
```
|
||||
mvn spring-boot:run
|
||||
```
|
||||
@ -4,21 +4,27 @@ This is a minimal OpenVidu server application sample built for Node with Express
|
||||
|
||||
It internally uses [openvidu-node-client SDK](https://docs.openvidu.io/en/stable/reference-docs/openvidu-node-client/).
|
||||
|
||||
Prerequisites:
|
||||
## Prerequisites
|
||||
|
||||
- [Node](https://nodejs.org/es/download/)
|
||||
|
||||
Install dependencies:
|
||||
## Run
|
||||
|
||||
Download repository
|
||||
|
||||
```
|
||||
git clone git@github.com:OpenVidu/openvidu-tutorials.git
|
||||
cd openvidu-tutorials/openvidu-basic-node
|
||||
```
|
||||
|
||||
Install dependencies
|
||||
|
||||
```
|
||||
npm install
|
||||
```
|
||||
|
||||
Run the application:
|
||||
Run the application
|
||||
|
||||
```
|
||||
git clone git@github.com:OpenVidu/openvidu-tutorials.git
|
||||
cd openvidu-tutorials/openvidu-basic-node
|
||||
npm i
|
||||
node index.js
|
||||
```
|
||||
@ -2,18 +2,20 @@
|
||||
|
||||
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:
|
||||
## Prerequisites
|
||||
|
||||
- [Python 3](https://www.python.org/downloads/)
|
||||
|
||||
Download repository:
|
||||
## 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:
|
||||
Create a python3 environment and activate it
|
||||
|
||||
```
|
||||
python3 -m venv venv
|
||||
@ -23,13 +25,13 @@ python3 -m venv venv
|
||||
. venv/bin/activate
|
||||
```
|
||||
|
||||
Install dependencies:
|
||||
Install dependencies
|
||||
|
||||
```
|
||||
pip install -r requirements.txt
|
||||
```
|
||||
|
||||
Run the application:
|
||||
Run the application
|
||||
|
||||
```
|
||||
python3 app.py
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user