grocy/Vagrantfile
Katharina Bogad 7f598058bf i18n: static pot to json compilation
Translations aren't embedded on every page load anymore;
this saves roughly 55kB on every single request, because
these can now be cached.
2021-06-20 23:12:17 +02:00

9 lines
360 B
Ruby

Vagrant.configure("2") do |config|
config.vm.box = "debian/buster64"
config.vm.provision "shell", path: "buildfiles/provision-vagrant.sh"
config.vm.network "forwarded_port", guest: 80, host: 8000
config.vm.synced_folder ".", "/vagrant", disabled: true
config.vm.synced_folder ".", "/grocy", automount: true, owner: "www-data", group: "www-data"
end