14 lines
248 B
Bash
14 lines
248 B
Bash
|
|
#!/bin/sh
|
||
|
|
set -e
|
||
|
|
|
||
|
|
php artisan storage:link || true
|
||
|
|
php artisan config:cache
|
||
|
|
php artisan route:cache
|
||
|
|
php artisan view:cache
|
||
|
|
|
||
|
|
if [ "$RUN_MIGRATIONS" = "true" ]; then
|
||
|
|
php artisan migrate --force
|
||
|
|
fi
|
||
|
|
|
||
|
|
exec php artisan serve --host=0.0.0.0 --port=8000
|