These files will help you get a Ruby on Rails environment set up on an Ubuntu virtual machine.
- Download Files (or clone repository if you aren't going to use it to start a new project)
- Copy
Vagrantfile.dist
toVagrantfile
- Make any changes necessary to
Vagrantfile
to configure Virtual Machine - Edit
setup.sh
to create the password for your PostgreSQL database user. - Install VM using:
$ vagrant up
All shared files will be located in /vagrant
on the VM.
To create a new Rails app that uses PostgreSQL in the VM, change to the shared folder (defaults to /vagrant/
) and execute:
$ vagrant ssh
$ cd /vagrant
$ rails new MYAPPNAME --database=postgresql
Then on your local machine, edit config/database.yml
and supply the following information for default
:
default: &default
adapter: postgresql
encoding: unicode
host: localhost
port: 5432
pool: 5
username: rails_user
password: {{PASSWORD_FROM_SETUP_SH}}
Then create the database with:
$ rake db:create db:migrate
To run the site:
$ cd MYAPPNAME
$ rails server
Once you do this, you can access your application here: http://192.168.33.10:3000 (Unless you changed the IP settings in the Vagrantfile).
- Ubuntu 14.04
- Ruby 2.1
- Rails 4
- Compass
- Git
- PostgreSQL 9.3
- nginx 1.6
- UFW (Uncomplicated FireWall)
- Node.js (because you just might need it for something)
Several lines of setup.sh
have been commented out that setup and enable the firewall. Uncomment them to close all ports except ssh
, http
, https
, and 3000
(the default Rails port)
If you are experiencing problems with files not syncing correctly to your VM while using NFS sharing, add this to the root object in your *.sublime-project
files:
"settings": {
"atomic_save": false
}
Disclaimer: This is an appendTo Labs project and as such there is no promise of support or even future development of this project. We are working on this project to meet a need at appendTo and sharing it in the spirit of open source software. If it helps you or your team meet needs as well, that is awesome – however, use at your own risk.