- Copy
.env.exampleto.envcp .env.example .env
- Configure the database settings in the
.envfile to use PostgreSQL.
- Install PHP dependencies using Composer:
composer install
- Install JavaScript dependencies using npm:
npm install
- Generate the application key:
php artisan key:generate
- Run the database migrations:
php artisan migrate:fresh --seed
- Simply run:
composer run dev
- Ensure you have PHP 8.4.2 and Node.js 22 installed on your machine.
- For more information, refer to the Laravel documentation.