13 lines
166 B
Bash
13 lines
166 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
pushd ./example-app
|
|
# composer update
|
|
composer install
|
|
|
|
php artisan migrate:fresh --seed
|
|
|
|
php artisan serve --host 0.0.0.0
|
|
popd
|