I’ve recently started using Laragon for all of my virtualhosts. It replaces Vagrant and Laravel Homestead and is very similar to Wamp and XXamp. I haven’t run into any issues yet and it has very fast response times.
I would still like to use the official Roots Sync Script plugin for syncing between production and development. It may not be possible as it seems to rely on ssh connections through wp-cli, which are set up in wp-cli.yml like so:
@development:
ssh: vagrant@mywebsite.test/home/vagrant/mywebsite.com
@production:
ssh: web@mywebsite.com/srv/www/mywebsite.com/current
I’m wondering if anyone knows a trick that could bypass the ssh connection here? Something like:
@development:
*notssh*: mywebsite.test
@production:
ssh: web@mywebsite.com/srv/www/mywebsite.com/current
Probably not possible but it would save me a good deal of time when syncing databases.