28 lines
587 B
Markdown
28 lines
587 B
Markdown
# openvidu-basic-ruby
|
|
|
|
This is a minimal OpenVidu server application sample built for Ruby with [Sinatra](https://sinatrarb.com/) and [Faraday](https://lostisland.github.io/faraday/). Visit [Application server](https://docs.openvidu.io/en/stable/application-server/) documentation for further context.
|
|
|
|
## Prerequisites
|
|
|
|
- [Ruby](https://www.ruby-lang.org/en/downloads/)
|
|
|
|
## Run
|
|
|
|
Download repository
|
|
|
|
```
|
|
git clone git@github.com:OpenVidu/openvidu-tutorials.git
|
|
cd openvidu-tutorials/openvidu-basic-ruby
|
|
```
|
|
|
|
Install gems
|
|
|
|
```
|
|
bundle install
|
|
```
|
|
|
|
Run the application
|
|
|
|
```
|
|
ruby app.rb
|
|
``` |