Remove process args Silence npm WARN output (when applicable) Compat for npm in different directories Reverse npm silence Replace Symfony Process Remove Symfony Process refs Add forgotten output for commands Removed colons that artisan already added Remove optional parameters in install cmd Simplify settings save call Further simplify settings save call
10 lines
164 B
Bash
10 lines
164 B
Bash
#!/usr/bin/env bash
|
|
|
|
echo "Preliminary installation starting!"
|
|
sleep 3
|
|
composer install
|
|
|
|
echo "Full installation starting!"
|
|
sleep 3
|
|
php artisan application:install
|