Example Application build with Laravel and React
The repo was created while I was working on the following YouTube tutorial
Make sure you have environment setup properly. You will need PHP8.1, composer and Node.js.
- Download the project (or clone using GIT)
- Copy
.env.example
into.env
and configure database credentials - Navigate to the project's root directory using terminal
- Run
composer install
- Set the encryption key by executing
php artisan key:generate --ansi
- Run migrations
php artisan migrate --seed
- Start local server by executing
php artisan serve
- Open new terminal and navigate to the
react
folder - Copy
react/.env.example
into.env
and adjust theVITE_API_BASE_URL
parameter - Run
npm install
- Run
npm run dev
to start vite server for React