mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-05 04:11:26 +08:00
6 lines
222 B
Ruby
6 lines
222 B
Ruby
Vagrant.configure("2") do |config|
|
|
config.vm.box = "generic/ubuntu2004"
|
|
config.vm.synced_folder ".", "/vagrant", type: "rsync", rsync__exclude: ".git/"
|
|
config.ssh.extra_args = ["-t", "cd /vagrant; bash --login"]
|
|
end
|