https://github.com/mtchavez/vagrant-rails
Vagrant Rails Setup for Ubuntu Trusty 64 Virtualbox
https://github.com/mtchavez/vagrant-rails
Last synced: about 2 months ago
JSON representation
Vagrant Rails Setup for Ubuntu Trusty 64 Virtualbox
- Host: GitHub
- URL: https://github.com/mtchavez/vagrant-rails
- Owner: mtchavez
- Created: 2015-02-25T07:39:06.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-06T07:25:04.000Z (about 10 years ago)
- Last Synced: 2025-02-04T15:32:42.645Z (4 months ago)
- Language: Shell
- Size: 176 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vagrant Rails Dev Box
[](https://github.com/mtchavez/vagrant-rails/releases)
Simple Rails Dev box setup to provision with Vagrant and push new
versions to Atlas to be used in other projects.## Requirements
* Ansible is required for provisioning
* Install via `pip install -r requirements.txt`
* Vagrant
* Virtualbox## Rails Setup
* RVM - Ruby 2.2.0
* NodeJS - version 0.10.26
* Postgres - version 9.3
* Memcached
* Redis
* CoffeeScript
* PhantomJS## Atlas Vagrant Box
Versions of the box will be hosted on Atlas to be used in other projects.
A simple Vagrant file using the box would be:```ruby
# -*- mode: ruby -*-
# vi: set ft=ruby :Vagrant.configure(2) do |config|
config.vm.box = 'mtchavez/rails-dev'
config.vm.box_version = '>=0.0.1'
end
```