Vagrant_for_Comptoir_local: allow "vagrant rsync-auto"
# Watches all local directories of any "rsync synced folders" (see Vagranfile)
# and automatically initiates an rsync transfer when changes are detected.
vagrant rsync-auto
# This command does not exit until an interrupt is received.
# start the same process in the background
vagrant rsync-auto &
- https://www.vagrantup.com/docs/synced-folders/rsync.html
- https://www.vagrantup.com/docs/cli/rsync-auto.html
TODO
-
Owner/Group (default vagrant/vagrant) -
Some files must be exclude : -
config/comptoir.php ---> created from the config/comptoir.default.php
file when creating the VM (seebootstrap.sh
). -
config/app.php ---> created by composer install
when creating the VM (seebootstrap.sh
).
-
-
Some directories must be exclude (logs, tmp, vendor, ...). -
webroot/img/files/ ---> created when creating the VM (see bootstrap.sh
). -
logs/ ---> created by composer install
when creating the VM (seebootstrap.sh
). -
tmp/ ---> created by composer install
when creating the VM (seebootstrap.sh
). -
vendor/ ---> created by composer install
when creating the VM (seebootstrap.sh
).
-
Edited by Fabrice Gangler