https://github.com/schultyy/basic-development-env
Basic Vagrant VM
https://github.com/schultyy/basic-development-env
Last synced: 8 months ago
JSON representation
Basic Vagrant VM
- Host: GitHub
- URL: https://github.com/schultyy/basic-development-env
- Owner: schultyy
- Created: 2014-06-24T13:46:44.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-06-27T20:50:27.000Z (almost 12 years ago)
- Last Synced: 2025-09-22T20:52:27.078Z (9 months ago)
- Language: Shell
- Homepage:
- Size: 137 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
basic-development-env
=====================
This is a basic Ubuntu x64 working environment featuring:
* Ruby
* RVM
* git
# Get started
```bash
$ git clone git@github.com:schultyy/basic-development-env.git
$ vagrant up
$ vagrant ssh
```
# I want a different Box
Got to [https://vagrantcloud.com/discover/featured](https://vagrantcloud.com/discover/featured) and pick a box.
Open `Vagrantfile`, then edit this line:
```Ruby
config.vm.box = ''
```
# Access the box from Host system
There is a private network configured between host and box. The IP
address is `192.168.33.10`.
To change this, edit this line in `Vagrantfile`:
```Ruby
config.vm.network "private_network", ip: "192.168.33.10"
```
# I need more things preinstalled
Then open `provision-script.sh` and add your tools