Spaces:
Running
on
Zero
Running
on
Zero
File size: 184 Bytes
cf75111 |
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 database seeder
php artisan db:seed
# Start the development server
php artisan serve
|