Minor Contributing documentation updates.

These are small things I had to change to have the vagrant environtment work
correctly.
This commit is contained in:
Rob Smith 2016-09-15 21:19:27 -07:00
parent 85fcd4e1b7
commit 0dba45909f
2 changed files with 6 additions and 3 deletions

View file

@ -1,5 +1,5 @@
# Request for contributions
We are always looking for contributions to OSEM. Read this guide on how to do that.
We are always looking for contributions to OSEM. Read this guide on how to do that.
In particular, this community seeks the following types of contributions:
@ -10,7 +10,7 @@ In particular, this community seeks the following types of contributions:
### Runing OSEM for development
We are using [Vagrant](https://www.vagrantup.com/) to create our development environments.
1. Install [Vagrant](https://www.vagrantup.com/downloads.html) and [VirtualBox](https://www.virtualbox.org/wiki/Downloads). Both tools support Linux, MacOS and Windows.
1. Install [Vagrant](https://www.vagrantup.com/downloads.html) and [VirtualBox 5.0.10](https://www.virtualbox.org/wiki/Download_Old_Builds_5_0). Both tools support Linux, MacOS and Windows.
2. Install [vagrant-exec](https://github.com/p0deje/vagrant-exec):
@ -33,7 +33,7 @@ We are using [Vagrant](https://www.vagrantup.com/) to create our development env
5. Start your OSEM rails app:
```
vagrant exec rails server -b 0.0.0.0
vagrant exec /vagrant/bin/rails server -b 0.0.0.0
```
6. Check out your OSEM rails app:

View file

@ -1,6 +1,9 @@
Osem::Application.configure do
# Settings specified here will take precedence over those in config/application.rb
# Allow the web console from the vagrant host ip
config.web_console.whitelisted_ips = '10.0.2.2'
# Use letter_opener_web for Vagrant (launchy won't work)
config.action_mailer.delivery_method = ENV['USER'] == 'vagrant' ? :letter_opener_web : :letter_opener