11 lines
211 B
Bash
11 lines
211 B
Bash
#!/bin/sh
|
|
composer install
|
|
|
|
# Create .env if it does not exist
|
|
if ! [ -e ".env" ] ; then
|
|
cp /init/.env .
|
|
php artisan key:generate
|
|
fi
|
|
|
|
php artisan migrate --force
|
|
php artisan serve --host=0.0.0.0 --port=8000 |