From 908b96a370d08bbf9c9418f24ac50636b3f76e82 Mon Sep 17 00:00:00 2001 From: Colin Mitchell Date: Wed, 3 May 2017 22:36:36 -0400 Subject: [PATCH] Make vagrant HTTP port configurable (#2510) --- Vagrantfile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index d58ef78fd..eeab72904 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -1,6 +1,8 @@ # -*- mode: ruby -*- # vi: set ft=ruby : +ENV["PORT"] ||= "3000" + $provision = <