Spaces:
Sleeping
Sleeping
File size: 174 Bytes
dfcff8f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/bin/bash
# Install dependencies
composer install
# Run migrations
php artisan migrate
# Run seeds
php artisan db:seed
# Start the development server
php artisan serve
|