Laravel locally run artisan commands effect VM environment
Asked Answered
S

1

0

I am looking for a solution that will allow me to run artisan commands from my local machine and for them to take effect on my homestead VM.

For example, when running php artisan migrate the command is run using the information stored in the .env file points to the VM, but my terminal is trying to run them locally.

The majority of the commands run successfully because they do not need drivers from the remote machine. Running php artisan route:list works fine.

How can I run artisan commands using a local terminal?

Saccule answered 13/4, 2016 at 9:41 Comment(0)
S
4

You need to change the following files:

.env

DB_HOST=127.0.0.1
DB_HOST_PORT=:33060

homestead.yaml

variables:
    - key: APP_ENV
      value: local
    - key: DB_HOST_PORT
      value: ":3306"

config/database.php

'mysql' => [
    // ...
    'driver' => 'mysql',
    'host'   => env('DB_HOST') . env('DB_HOST_PORT'),
    // ...
]
Saccule answered 13/4, 2016 at 9:44 Comment(1)
It seems like this is now baked into laravelSaccule

© 2022 - 2024 — McMap. All rights reserved.