https://github.com/devgateway/happy-deployer
https://github.com/devgateway/happy-deployer
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/devgateway/happy-deployer
- Owner: devgateway
- License: mit
- Created: 2014-02-28T21:47:23.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2016-08-02T07:03:11.000Z (over 9 years ago)
- Last Synced: 2024-04-15T15:31:33.953Z (almost 2 years ago)
- Language: Ruby
- Size: 183 KB
- Stars: 5
- Watchers: 19
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# happy-deployer
## Requirements
* [VirtualBox](https://www.virtualbox.org/wiki/Downloads)
* [Vagrant](http://www.vagrantup.com/downloads.html)
* [vagrant-vbguest](https://github.com/dotless-de/vagrant-vbguest)
* [vagrant-hostsupdater](https://github.com/cogitatio/vagrant-hostsupdater) (tested on linux and Mac OS)
* (optional) [vagrant-bash-completion](https://github.com/kura/vagrant-bash-completion)
## Setup Instructions
* Install VirtualBox
* Install Vagrant, and optionally the bash completion script.
* Install the Vagrant plugins:
```
vagrant plugin install vagrant-vbguest
vagrant plugin install vagrant-hostsupdater
```
* Drop the vagrant files directly into your project folder.
* Create your virtual development environment (you might need to wait for a while):
```
vagrant up --provision
```
* Happy coding!
## How to
* Shut down your VM:
```
vagrant halt
```
* Delete your VM (yes you will LOSE all your data that exists only in the VM):
```
vagrant destroy
```
* Update (after new configuration files were provided) or reset environment settings:
```
vagrant provision
```
## More Info
* [Puppet Style Guide](https://docs.puppetlabs.com/guides/style_guide.html)
* [Puppet Function Reference](https://docs.puppetlabs.com/references/latest/function.html)
* [Puppet Type Reference](https://docs.puppetlabs.com/references/latest/type.html)