├── .gitignore ├── README.md ├── Vagrantfile ├── app ├── app.py └── index.php └── puppet ├── manifests └── init.pp └── modules ├── composer └── manifests │ └── init.pp ├── flask └── manifests │ └── init.pp ├── laravel ├── files │ └── laravel └── manifests │ └── init.pp ├── mysql ├── files │ └── my.cnf └── manifests │ └── init.pp ├── nginx ├── files │ ├── flask │ ├── localhost │ └── wordpress └── manifests │ └── init.pp ├── nodejs └── manifests │ └── init.pp ├── php55 ├── files │ ├── php.ini │ └── www.conf └── manifests │ └── init.pp ├── ruby └── manifests │ └── init.pp └── wordpress ├── files └── wp-config.php └── manifests └── init.pp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calebdre/Portable-Vagrant/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calebdre/Portable-Vagrant/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calebdre/Portable-Vagrant/HEAD/Vagrantfile -------------------------------------------------------------------------------- /app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calebdre/Portable-Vagrant/HEAD/app/app.py -------------------------------------------------------------------------------- /app/index.php: -------------------------------------------------------------------------------- 1 |