Setup: OSX, IDE Local WebServer is setup on a VM, CentOS, serving files from host share.
Goal: Be able to run Phalcon DevTools locally, to generate migrations
Problem: Config file sets 'host' => 'localhost' for the database connection (because the database is local to the VM/webserver). Thus, when running any Phalcon DevTools command from the host machine (OS X), which accesses DB (such as it does with migrations), it cannot make the connection to the database (localhost makes no sense from my HOST's terminal).
Is there a way to change the database connection parameters for DevTools only? So that, when telling DevTools to do something database related, it will properly connect to the remote host?
Thanks, Adam