Just went through all the steps listed on the Laravel site to install and get up and running for MacOS HighSierra. I currently have composer, Homebrew, valet, PHP 7.2.8, mySQL version 8.0.11 and Laravel 5.6.28 installed. I can create a new project by doing the Laravel new blog command and not have any problems. Also when I go to my browser I can see current project I just created or am working on. I can run the valet list command and so I know its running/working. I also can create a migration and have it show up in my project as well by running the php artisan make:migration test_test_test.
My PATH also has ~/.composer/vendor/bin in it as well.
my .env file look like such
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=blog
DB_USERNAME=root
DB_PASSWORD=
I run the php artisan migrate -vvv command and it runs and stalls/hangs up with no output. I have to ctl-c to get out of it. tried the -v /-vv as well, did the same thing.
I created a database named blog and even add a table test manually to make sure that the database was working/running.
from Laravel Migration stalls and doesnt do anythign
No comments:
Post a Comment