mirror of
https://github.com/covidpass-org/covidpass.git
synced 2025-02-22 22:47:44 +01:00
* Bump lockfile ver of pdjjs-dist to match package.json definition * Also added dev env wiring code for Vagrant VM * Increment app version to 1.9.19 * Assorted logging cleanup and debugging addition around QC and BC SHC codes to help improve SHC code detection
16 lines
444 B
Bash
Executable File
16 lines
444 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Checking for vagrant-vbguest plugin..."
|
|
vagrant plugin list | grep -e "vagrant-vbguest" > /dev/null
|
|
|
|
if [ $? -eq 0 ]; then
|
|
echo "vagrant-vbguest found! Skipping install..."
|
|
else
|
|
echo "vagrant-vbguest plugin not detected, installing now..."
|
|
vagrant plugin install vagrant-vbguest
|
|
fi
|
|
|
|
echo "Starting Vagrant VM..."
|
|
vagrant up
|
|
|
|
echo "Environment setup complete! You should now be able to 'vagrant ssh' into the running VM" |