Skip to content
This repository has been archived by the owner on Feb 8, 2018. It is now read-only.

Adding NFS support to supported platforms #2321

Merged
merged 3 commits into from
Apr 26, 2014
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Table of Contents
- [Dependencies](#dependencies)
- [Building](#building)
- [Launching](#launching)
- [Docker](#docker)
- [Docker](#docker)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah... I forgot to link to the Vagrant section from the TOC earlier. Would you mind adding it?

- [Help!](#help)
- [Configuration](#configuration)
- [Modifying CSS](#modifying-css)
Expand Down Expand Up @@ -105,8 +105,6 @@ running `make`, then add
for more information](http://stackoverflow.com/a/22355874/347246)):

$ ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future



Building
--------
Expand Down Expand Up @@ -200,6 +198,8 @@ Vagrant
-------
If you have vagrant installed, you can run gittip by running `vagrant up` from the project directory. Please note that if you ever switch between running gittip on your own machine to vagrant or vice versa, you will need to run `make clean`.

If you're using Vagrant for the first time you'll need [Vagrant](http://www.vagrantup.com/) and [VirtualBox](https://www.virtualbox.org/) installed. If you're on Linux you'll need to install `nfs-kernel-server`.

The Vagrantfile will download a custom made image from the internet. If you have a slow internet connection, you can download a local copy of this file, by running:

`curl http://downloads.gittipllc.netdna-cdn.com/gittip.box`
Expand Down
3 changes: 2 additions & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box_url = File.exist?("gittip.box") ? "file://gittip.box" : "http://downloads.gittipllc.netdna-cdn.com/gittip.box"

# Sync the project directory and expose the app
config.vm.synced_folder ".", "/home/vagrant/#{PROJECT_DIRECTORY}"
config.vm.network "private_network", ip: "172.27.36.119"
config.vm.synced_folder ".", "/home/vagrant/#{PROJECT_DIRECTORY}", type: "nfs"
config.vm.network :forwarded_port, guest: 8537, host: 8537

# TODO: Pin apt-get packages to the same versions Heroku uses
Expand Down