diff --git a/basic/backend/go/README.md b/basic/backend/go/README.md new file mode 100644 index 00000000..53239f14 --- /dev/null +++ b/basic/backend/go/README.md @@ -0,0 +1,24 @@ +# Basic Backend Node + +Basic server application built for Go with Gin. It internally uses [livekit-server-sdk-go](https://pkg.go.dev/github.com/livekit/server-sdk-go). + +For further information, check the [tutorial documentation](https://livekit-tutorials.openvidu.io/basic/backend/go). + +## Prerequisites + +- [Go](https://go.dev/dl/) + +## Run + +1. Download repository + +```bash +git clone https://github.com/OpenVidu/openvidu-livekit-tutorials.git +cd openvidu-livekit-tutorials/basic/backend/go +``` + +2. Run the application + +```bash +go run main.go +``` diff --git a/basic/backend/php/README.md b/basic/backend/php/README.md new file mode 100644 index 00000000..80c9d184 --- /dev/null +++ b/basic/backend/php/README.md @@ -0,0 +1,31 @@ +# Basic Backend Node + +Basic server application built for PHP. It internally uses [livekit-server-sdk-php](https://github.com/agence104/livekit-server-sdk-php). + +For further information, check the [tutorial documentation](https://livekit-tutorials.openvidu.io/basic/backend/php). + +## Prerequisites + +- [PHP](https://www.php.net/downloads) +- [Composer](https://getcomposer.org/download/) + +## Run + +1. Download repository + +```bash +git clone https://github.com/OpenVidu/openvidu-livekit-tutorials.git +cd openvidu-livekit-tutorials/basic/backend/php +``` + +2. Install dependencies + +```bash +composer install +``` + +3. Run the application + +```bash +composer start +```