This commit is contained in:
Taylor Otwell
2022-02-08 17:28:34 -06:00
parent 5adbc47caa
commit 94c42bd39f

View File

@@ -20,7 +20,13 @@ cd next-backend
composer require laravel/breeze
php artisan breeze:install api
```
Next, ensure that your application's `APP_URL` and `FRONTEND_URL` environment variables are set to `http://localhost:8000` and `http://localhost:3000`, respectively.
After defining the appropriate environment variables, you may serve the Laravel application using the `serve` Artisan command:
```bash
# Serve the application...
php artisan serve
```