aboutsummaryrefslogtreecommitdiff
path: root/vagrant
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-02-09 13:39:28 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-02-09 13:39:28 +0100
commit9fae85ab0c4a9db3cf190763e1ba9a0ea4acac36 (patch)
treef785c766219e1a1575c48074c8ed503986f80603 /vagrant
parentUpdated conf file for Vagrant (diff)
downloadnewspipe-9fae85ab0c4a9db3cf190763e1ba9a0ea4acac36.tar.gz
newspipe-9fae85ab0c4a9db3cf190763e1ba9a0ea4acac36.tar.bz2
newspipe-9fae85ab0c4a9db3cf190763e1ba9a0ea4acac36.zip
Heroku stack
Diffstat (limited to 'vagrant')
-rw-r--r--vagrant/Vagrantfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/vagrant/Vagrantfile b/vagrant/Vagrantfile
index e92e0933..78fe061e 100644
--- a/vagrant/Vagrantfile
+++ b/vagrant/Vagrantfile
@@ -11,7 +11,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "pyAggr3g470r (Ubuntu Trusty Server)"
- config.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-i386-juju-vagrant-disk1.box"
+ config.vm.box_url = "https://dl.dropboxusercontent.com/s/rnc0p8zl91borei/heroku.box"
config.vm.provision :shell, path: "bootstrap.sh"
# Disable automatic box update checking. If you disable this, then
bgstack15