Last active
November 1, 2018 11:01
-
-
Save sudar/79a9ac1f77ec897f5426 to your computer and use it in GitHub Desktop.
Mapping plugin folder in VVV using shared folders. Details at http://sudarmuthu.com/blog/mapping-plugin-folder-in-vvv-using-shared-folders/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
config.vm.provider "virtualbox" do |v| | |
v.memory = 2048 | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
config.vm.synced_folder "/Users/sudar/Dropbox/plugins/", "/srv/www/wordpress-default/wp-content/plugins", :owner => "www-data", :mount_options => [ "dmode=775", "fmode=774" ] | |
config.vm.synced_folder "/Users/sudar/Dropbox/plugins/", "/srv/www/wordpress-develop/wp-content/plugins", :owner => "www-data", :mount_options => [ "dmode=775", "fmode=774" ] | |
config.vm.synced_folder "/Users/sudar/Dropbox/plugins/", "/srv/www/wordpress-trunk/wp-content/plugins", :owner => "www-data", :mount_options => [ "dmode=775", "fmode=774" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ tree -L 1 www | |
www | |
├── default | |
├── phpcs | |
├── vvv-hosts | |
├── wordpress-default | |
├── wordpress-develop | |
├── wordpress-trunk | |
└── wp-cli |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@sudar curious about this tree command you're using, how does that bash script look like?