wahajnintyeight / video_meet_up_project

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This repo will allow you to create your own Laravel 7 video chat room.

If you're interested in actually creating this from scratch, a tutorial is available at twilio.com.

Installation

To install on your computer, run the following command in your terminal:

$ git clone git@github.com:themarcusbattle/laravel-video-conference-app.git

Install all dependencies:

$ cd laravel-video-conference-app && npm install && composer install

Create a new .env file.

$ cp .env.example .env

Update the database credentials and generate a new application key.

$ php artisan key:generate

Add your Twilio Credentials to the .env file. If you do not have a Twilio account, you can create a free one and receive $10 in credit.

You’ll need to copy the Account SID from your account dashboard. An API Key and API Secret will need to be created from your API Keys list.

TWILIO_ACCOUNT_SID="AC1e621d68b8aeba7616956d77914ca7ae"
TWILIO_API_KEY_SID="SK4626d0beb9807bad44ce8bbd325856c9"
TWILIO_API_KEY_SECRET="Ot4uKKO6Qwpt7RAOKJ9Zd5OdG0qP5XeQ"

Lastly, clear the Laravel cache to ensure that your dotenv variable are loaded:

$ php artisan config:clear

Start the application using the Laravel artisan command:

$ php artisan serve

Visit http://127.0.0.1:8000/ and test things out!

NOTE: You will only be able to use this in production under https.

Push to Production

If you would like to host this app on your own server, I highly recommend Amezmo, a dedicated PHP platform with automatic deployments. Fork this repo and deploy!

About


Languages

Language:PHP 93.9%Language:Vue 4.6%Language:Shell 0.9%Language:Blade 0.6%