- PHP >= 8.2
- Composer
- Docker Desktop (for Laravel Sail)
- Clone the repository
git clone https://github.com/alejandrorh97/instructoria
cd <project-folder>- Install dependencies
composer install- Environment configuration
cp .env.example .env
php artisan key:generate- Database migration
php artisan migrateIf you prefer using Docker, follow these steps:
- Start Sail
./vendor/bin/sail up -d- Run migrations via Sail
./vendor/bin/sail artisan migrate- Access the application
The app will be available at:
http://localhost:8080
- Serve the application
php artisan serve