This is a vagrant box with no specific package installed, but only zenias is accessible.
- Box: minimal/trusty64
This folder is a shared folder: so you will find its content on the guest machine in the /vagrant folder.
This virtual machine has been created with no specific package beside git and the heroku-toolelt.
A simple step by step method to push your website to heroku:
# You must be in the /vagrant/working_dir dir:
cd /vagrant/working_dir
# Init a git repo if not already done:
git init
# Commit your changes:
git add .
git commit -m 'Initial commit'
# Create a heroku app:
heroku create
# Push the site:
git push heroku master
# Test the heroku box :
heroku open