Skip to content

Commit

Permalink
update install repo address and fix problem in the vagrantfile
Browse files Browse the repository at this point in the history
  • Loading branch information
srubin committed Dec 17, 2014
1 parent 42e5b8b commit 46b35ae
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Clone the speech editor repository:

```bash
# (> means a prompt on your computer)
> git clone git@bitbucket.org:srubin/speecheditor.git
> git clone https://github.com/ucbvislab/speecheditor.git
> cd speecheditor
> git submodule init
> git submodule update
Expand Down
6 changes: 4 additions & 2 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provision :shell, path: "provision.sh"
config.vm.network :forwarded_port, host: 8080, guest: 5000
config.vm.network "private_network", type: "dhcp"
config.vm.synced_folder ".", "/vagrant", type: "nfs"

# These options can speed up i/o, but might not work on all systems
# config.vm.network "private_network", type: "dhcp"
# config.vm.synced_folder ".", "/vagrant", type: "nfs"

config.vm.provider "virtualbox" do |v|
host = RbConfig::CONFIG['host_os']
Expand Down

0 comments on commit 46b35ae

Please sign in to comment.