init: vagrant file and bash script for local tests
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.vagrant
|
||||
4
Vagrantfile
vendored
Normal file
4
Vagrantfile
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
Vagrant.configure("2") do |config|
|
||||
config.vm.box = "generic/ubuntu2204"
|
||||
config.ssh.private_key_path = "~/.ssh/id_rsa"
|
||||
end
|
||||
5
setup_test_env.sh
Normal file
5
setup_test_env.sh
Normal file
@@ -0,0 +1,5 @@
|
||||
#!/bin/bash
|
||||
|
||||
export VAGRANT_HOME=/goinfre/$(whoami)/.vagrant.d
|
||||
|
||||
vagrant up
|
||||
Reference in New Issue
Block a user