I'm trying to run a vagranfile that will result in a running python flask app. I've tried using this as the last command to achieve this -
config.vm.provision :shell, :path => "python app.py"
But it resulted with the following error -
*pathfor shell provisioner does not exist on the host system: /Users/*****/code/app-vagrant/python app.py
I understand that the script is trying to run this command from the host machine, how do I make Vagrant run the script on the vagrant machine launched?