File size: 201 Bytes
dad4394 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/bin/bash
# Install dependencies
php composer.phar install
# Run migrations
php artisan migrate
# Run database seeder
php artisan db:seed
# Start the Laravel development server
php artisan serve
|