8 lines
174 B
Bash
8 lines
174 B
Bash
#!/bin/sh
|
|
|
|
# Migrate the database
|
|
php ./artisan migrate --force
|
|
|
|
# Start all of the server sumulataneously
|
|
php ./artisan serve --no-interaction -vvv --port=80 --host=0.0.0.0
|