mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
Add Vagrantfile.
This commit is contained in:
parent
69a7f847aa
commit
eed0babb13
1
.gitignore
vendored
1
.gitignore
vendored
@ -20,3 +20,4 @@ dist/
|
||||
.coverage
|
||||
plinth/tests/coverage/report/
|
||||
*.mo
|
||||
.vagrant/
|
||||
|
||||
13
Vagrantfile
vendored
Normal file
13
Vagrantfile
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
# -*- mode: ruby -*-
|
||||
# vi: set ft=ruby :
|
||||
Vagrant.configure(2) do |config|
|
||||
config.vm.box = "jvalleroy/plinth-dev"
|
||||
config.vm.network "forwarded_port", guest: 443, host: 4430
|
||||
config.vm.provision "shell", inline: <<-SHELL
|
||||
cp -R /vagrant /home/vagrant/plinth
|
||||
cd /home/vagrant/plinth
|
||||
python3 setup.py install
|
||||
systemctl daemon-reload
|
||||
systemctl restart plinth
|
||||
SHELL
|
||||
end
|
||||
Loading…
x
Reference in New Issue
Block a user