From 94c42bd39f82c3d02fbae62bf6819e6bf9481f09 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 8 Feb 2022 17:28:34 -0600 Subject: [PATCH] wip --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 124b884..deba96e 100644 --- a/README.md +++ b/README.md @@ -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 ```