Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vutran/provagrant
Provision a development environment with Vagrant.
https://github.com/vutran/provagrant
vagrant virtualbox
Last synced: 1 day ago
JSON representation
Provision a development environment with Vagrant.
- Host: GitHub
- URL: https://github.com/vutran/provagrant
- Owner: vutran
- License: mit
- Created: 2014-02-13T22:51:04.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-04-10T17:59:15.000Z (over 10 years ago)
- Last Synced: 2024-05-02T05:43:31.306Z (8 months ago)
- Topics: vagrant, virtualbox
- Language: VimL
- Homepage:
- Size: 191 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ProVagrant
Provision a development environment with Vagrant.
# Before doing anything, please install Vagrant and VirtualBox
- [Vagrant](http://www.vagrantup.com/)
- [VirtualBox](https://www.virtualbox.org/)# Initialize Vagrant
Within the Terminal, create a new project folder and initialize Vagrant:
mkdir MyVagrantProject && cd MyVagrantProject
Initialize a new VagrantFile (precise32)
vagrant init precise32 http://files.vagrantup.com/precise32.box
Within the Terminal, start the Vagrant box:
vagrant up
# Provision the Environment
`setup.sh` will be executed during the the setup of the virtual machine. Please refer to `setup.sh` for more information.
# To-Do
* Extract configuration into separate INI file
* Setup script to create a default virtual host# Credits
* [Venison](https://github.com/tjstein/venison)