- Install project dependencies using Composer:
composer install
- Create a
.env
file by copying the example:
cp .env.example .env
- Generate a unique application key:
php artisan key:generate
- Create a SQLite database:
touch database/database.sqlite
- Run migrations and seed the database:
php artisan migrate:fresh --seed
- Create a symbolic link for storage:
php artisan storage:link
- Start the development server:
php artisan serve
- Open your browser and go to http://127.0.0.1:8000 to access the application.