Running Claude Code dangerously (safely)
blog.emilburzo.com
Running Claude Code dangerously (safely)
1–10 of 265 posts
Re: Running Claude Code dangerously (safely)
#2Re: Running Claude Code dangerously (safely)
#3Keeping in mind with Vagrant: if you are using a synced_folder in your host as a source folder in the VM, those files in the synced_folder will be modified on the host.
But if you need something more strict, 'config.vm.synced_folder' also supports 'type rsync', which will copy the source folder at startup to the VM, but then it's on you to sync it back or whatever.
Re: Running Claude Code dangerously (safely)
#4Keeping in mind with Vagrant: if you are using a synced_folder in your host as a source folder in the VM, those files in the synced_folder will be modified on the host.
Good point. For me, that was intentional, since all my projects are in git I don't care if it messes something up. Then you get the benefit of being able to use your regular git tooling/flows/whatever, without having to add credentials to the VM. But if you need something more strict, 'config.vm.synced_folder' also supports 'type rsync', which will copy the source folder at startup to the VM, but then it's on you to…
Thanks
Re: Running Claude Code dangerously (safely)
#5Keeping in mind with Vagrant: if you are using a synced_folder in your host as a source folder in the VM, those files in the synced_folder will be modified on the host.
Re: Running Claude Code dangerously (safely)
#6Re: Running Claude Code dangerously (safely)
#7Syncthing works well for getting a local copy of a directory from the VM.
Re: Running Claude Code dangerously (safely)
#8How about running Claude as a different user with very limited permissions?
Re: Running Claude Code dangerously (safely)
#9Re: Running Claude Code dangerously (safely)
#10Keeping in mind with Vagrant: if you are using a synced_folder in your host as a source folder in the VM, those files in the synced_folder will be modified on the host.