mirror of
https://github.com/neocities/neocities.git
synced 2025-04-25 01:32:36 +02:00
12 lines
379 B
Ruby
12 lines
379 B
Ruby
VAGRANTFILE_API_VERSION = '2'
|
|
|
|
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|
config.vm.box = 'ubuntu/bionic64'
|
|
config.vm.provision :shell, path: './vagrant/development.sh'
|
|
config.vm.network :forwarded_port, guest: 9292, host: 9292
|
|
|
|
config.vm.provider :virtualbox do |vb|
|
|
vb.customize ['modifyvm', :id, '--memory', '2048']
|
|
vb.name = 'neocities'
|
|
end
|
|
end
|