Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryanpcmcquen/zippy
A simple Vagrant/Ansible implementation.
https://github.com/ryanpcmcquen/zippy
ansible hacktoberfest vagrant
Last synced: 2 days ago
JSON representation
A simple Vagrant/Ansible implementation.
- Host: GitHub
- URL: https://github.com/ryanpcmcquen/zippy
- Owner: ryanpcmcquen
- License: mpl-2.0
- Created: 2015-08-22T18:27:51.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-06-30T20:34:31.000Z (over 5 years ago)
- Last Synced: 2025-01-08T20:56:59.605Z (3 days ago)
- Topics: ansible, hacktoberfest, vagrant
- Language: Shell
- Homepage:
- Size: 16.3 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOGS.txt
- License: LICENSE
Awesome Lists containing this project
README
#ZIPPY
---
Zippy is a practical application of Vagrant, Ansible, WP-CLI, and Capistrano-wp for portable auto-deployments.The idea is a zero-to-hero LNMP stack running from vagrant up.
Our original target was Ubuntu LTS releases, but due to a significant ram difference, as well as the ability to serve more concurrent users with a lower error rate and response time, is now Debian stable.
---
##Notes!
---:::text
******************************************************
** .--. _________ __ __ __ __ **
** |o_o | /___ ___// / / / \ \_/ / **
** |:_/ | / / / /__/ / / _ \ **
** // \ \ /_/ /______/ /_/ \_\ **
** (| | ) __ __ __ __ **
** /'\_ _/`\ |__| | | \ / |_ |__| **
** \___)=(___/ | |__| \/\/ |__ |\ **
******************************************************http://vagrantbox.es has a list of vagrant boxes available
We currently use our own custom box for local development:
:::text
https://bitbucket.org/roadsidemultimedia/zippy/downloads/zippy-wheezy64-lemp.boxYou may run this command to add the box manually, but vagrant up will download and enable it for you:
:::text
vagrant box add wheezy64-lemp https://bitbucket.org/roadsidemultimedia/zippy/downloads/zippy-wheezy64-lemp.box###################
You need:
- git
- virtualbox + its extension pack
- vagrant
- ansible (you can install it with `pip install ansible`)Current command set to get rockin':
:::text
git clone [email protected]:ryanpcmcquen/zippy.git
cd zippy
### unfortunately 'vagrant plugin install' can only take one argument :-(
vagrant plugin install vagrant-vbguest
vagrant plugin install vagrant-digitalocean
vagrant plugin install vagrant-hostsupdater
### zippy works with stable versions, but if you feel like testing things
### and need to install a pre-release or different version, do it like so:
### vagrant plugin install vagrant-vbguest --plugin-version 0.10.0.pre1 --plugin-source https://rubygems.org
## for local:
vagrant up local
## for staging:
vagrant up staging --provider=digital_ocean###################
### Vagrant usage:
- `vagrant up` only needs to be done once (unless you reboot)
- use `vagrant provision` if changes are made to the ansible playbook(s)
- use `vagrant reload` if changes are made to the `Vagrantfile`Note that vbguest may bark an error:
:::text
Installing the Window System drivers ...fail!
(Could not find the X.Org or XFree86 Window System.)
An error occurred during installation of VirtualBox Guest Additions ...There is nothing to worry about though, as our server is headless (display server is not used).
If you are getting this error on Mac OS:
:::text
Progress state: NS_ERROR_FAILURE
VBoxManage: error: Failed to create the host-only adapter
VBoxManage: error: VBoxNetAdpCtl:
Error while adding new interface: failed to open /dev/vboxnetctl: No such file or directoryTry running this:
:::text
sudo /Library/StartupItems/VirtualBox/VirtualBox restart---