schneespur/vendor/ramsey/uuid/resources/vagrant/linux/Vagrantfile
Michael ee3dbba6cc Initial release v1.0.0
Schneespur — Open-source winter service documentation software (PWA + Admin).
GPS tracking via OwnTracks, weather data, photo evidence, and legally
compliant service records for winter maintenance operators.

License: AGPL-3.0-or-later
2026-05-17 13:33:51 +00:00

27 lines
507 B
Ruby

# -*- mode: ruby -*-
# vi: set ft=ruby :
$script = <<-SCRIPT
apt-get update
apt-get install -y \
composer \
php-bcmath \
php-cli \
php-gmp \
php-json \
php-uuid \
php-xdebug \
php-xml \
php-zip \
unzip
SCRIPT
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/eoan64"
config.vm.provision "shell", inline: $script
config.vm.synced_folder "../../../", "/home/vagrant/uuid", type: "rsync"
config.vm.provider "virtualbox" do |v|
v.name = "ramsey-uuid-linux"
end
end