9 lines
110 B
Text
9 lines
110 B
Text
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -euo pipefail
|
||
|
|
||
|
composer install
|
||
|
composer recipe:unpack
|
||
|
|
||
|
php -S localhost:8888 -t web
|