31 lines
635 B
Markdown
31 lines
635 B
Markdown
# Basic Ruby
|
|
|
|
Basic server application built for Ruby with Sinatra. It internally uses [livekit-server-sdk-ruby](https://github.com/livekit/server-sdk-ruby).
|
|
|
|
For further information, check the [tutorial documentation](https://livekit-tutorials.openvidu.io/tutorials/application-server/ruby/).
|
|
|
|
## Prerequisites
|
|
|
|
- [Ruby](https://www.ruby-lang.org/en/downloads/)
|
|
|
|
## Run
|
|
|
|
1. Download repository
|
|
|
|
```bash
|
|
git clone https://github.com/OpenVidu/openvidu-livekit-tutorials.git
|
|
cd openvidu-livekit-tutorials/application-server/ruby
|
|
```
|
|
|
|
2. Install dependencies
|
|
|
|
```bash
|
|
bundle install
|
|
```
|
|
|
|
3. Run the application
|
|
|
|
```bash
|
|
ruby app.rb
|
|
```
|