Skip to content

Commit

Permalink
add reverb
Browse files Browse the repository at this point in the history
  • Loading branch information
alnutile committed Mar 28, 2024
1 parent 231168e commit a85169f
Show file tree
Hide file tree
Showing 15 changed files with 1,349 additions and 18 deletions.
5 changes: 5 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,8 @@ VITE_APP_NAME="${APP_NAME}"

OPENAI_API_KEY=
OPENAI_ORGANIZATION=


REVERB_APP_ID=SOMETHING
REVERB_APP_KEY=SOMETHING
REVERB_APP_SECRET=SOMETHING
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,8 @@ CREATE EXTENSION vector;
And just thinking how to make some of those flows work in a Laravel environment

[![LaraChain Full Demo](https://img.youtube.com/vi/cz7d6d3pk4o/0.jpg)](https://www.youtube.com/watch?v=cz7d6d3pk4o)


## Make sure to setup Reverb

Per the Laravel docs https://laravel.com/docs/11.x/reverb
1 change: 1 addition & 0 deletions bootstrap/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
web: __DIR__.'/../routes/web.php',
api: __DIR__.'/../routes/api.php',
commands: __DIR__.'/../routes/console.php',
channels: __DIR__.'/../routes/channels.php',
health: '/up',
)
->withMiddleware(function (Middleware $middleware) {
Expand Down
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"laravel/jetstream": "^5.0",
"laravel/pennant": "^1.7",
"laravel/pulse": "^1.0@beta",
"laravel/reverb": "@beta",
"laravel/sanctum": "^4.0",
"laravel/tinker": "^2.9",
"openai-php/laravel": "^0.8.1",
Expand Down
Loading

0 comments on commit a85169f

Please sign in to comment.