11 lines
199 B
Bash
11 lines
199 B
Bash
#!/bin/sh
|
|
|
|
# Migrate the database
|
|
php ./artisan migrate --force || exit 1
|
|
|
|
# Cache
|
|
php ./artisan optimize:clear && php ./artisan optimize
|
|
|
|
# Start the server
|
|
exec frankenphp php-server --root=public
|