https://github.com/milanowicz/generator-vagrant
Yeoman Generator to create Vagrant development environments or download ModernIE images.
https://github.com/milanowicz/generator-vagrant
Last synced: about 1 month ago
JSON representation
Yeoman Generator to create Vagrant development environments or download ModernIE images.
- Host: GitHub
- URL: https://github.com/milanowicz/generator-vagrant
- Owner: milanowicz
- Created: 2014-08-16T07:55:25.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-08-16T08:12:04.000Z (almost 11 years ago)
- Last Synced: 2025-03-25T18:21:18.948Z (about 2 months ago)
- Language: JavaScript
- Size: 137 KB
- Stars: 6
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# generator-vagrant
> [Yeoman](http://yeoman.io) generator to create a [Vagrant](http://www.vagrantup.com/) development environment.
## VM Boxes
### GNU/Linux
* ubuntu/trusty64 - Official Ubuntu Server 14.04 LTS (Trusty Tahr) builds
* puphpet/ubuntu1404-x64 - Ubuntu Trusty 14.04 LTS x64
* chef/ubuntu-13.10 - A standard Ubuntu 13.10 x64 base install
* hashicorp/precise64 - A standard Ubuntu 12.04 LTS 64-bit box.
* hashicorp/precise32 - A standard Ubuntu 12.04 LTS 32-bit box.
* puphpet/ubuntu1204-x64 - Ubuntu Precise 12.04 LTS x64
* puphpet/debian75-x64 - Debian Wheezy 7.5 x64
* chef/debian-7.4 - A standard Debian 7.4 x64 base install
* laravel/homestead - Official Laravel local development box.
* chef/centos-6.5 - A standard CentOS 6.5 x64 base install
* chef/fedora-20 - A standard Fedora 20 x64 base install
* chef/freebsd-9.2 - A standard FreeBSD 9.2 x64 base install
#### Provision Debian Ubuntu
* Apach2
* MySQL
* Tomcat
### Windows
* ferventcoder/win7pro-x64-nocm-lite - Windows 7 Professional x64 with Service Pack 1 - Lite (with no configuration management tools)
* opentable/win-2012r2-standard-amd64-nocm - Windows 2012 R2 Standard Edition x64 (with no configuration management tools)
* ferventcoder/win2008r2-x64-nocm - Windows 2008 R2 x64 with Service Pack 1 (with no configuration management tools)
### ModernIE
Download one of them you like:
* ModernIE 10 - Windows 8
* ModernIE 10 - Windows 7
* ModernIE 9 - Windows 7
* ModernIE 8 - Windows XP
* ModernIE 7 - Windows Vista
* ModernIE 6 - Windows XP
## Getting Started
### What is Yeoman?
Trick question. It's not a thing. It's this guy:

Basically, he wears a top hat, lives in your computer, and waits for you to tell him what kind of application you wish to create.
Not every new computer comes with a Yeoman pre-installed. He lives in the [npm](https://npmjs.org) package repository. You only have to ask for him once, then he packs up and moves into your hard drive. *Make sure you clean up, he likes new and shiny things.*
```bash
$ npm install -g yo
```### Yeoman Generators
Yeoman travels light. He didn't pack any generators when he moved in. You can think of a generator like a plug-in. You get to choose what type of application you wish to create, such as a Backbone application or even a Chrome extension.
To install generator-vagrant from npm, run:
```bash
$ npm install -g generator-vagrant
```Finally, initiate the generator:
```bash
$ yo vagrant
```### Getting To Know Yeoman
Yeoman has a heart of gold. He's a person with feelings and opinions, but he's very easy to work with. If you think he's too opinionated, he can be easily convinced.
If you'd like to get to know Yeoman better and meet some of his friends, [Grunt](http://gruntjs.com) and [Bower](http://bower.io), check out the complete [Getting Started Guide](https://github.com/yeoman/yeoman/wiki/Getting-Started).
## Getting Developed
Clone the generator-vagrant repository.
```
$ git clone [email protected]:Milanowicz/generator-vagrant.git
```That'll install your project dependencies and symlink a global module to your local file. After npm is done, you'll be able to call yo name and you should see the console.log defined earlier outputted in the terminal. Congratulation, you just built your first generator!
```
$ cd generator-vagrant/
``````
$ npm link
```## License
MIT