Skip to content

Instantly share code, notes, and snippets.

@fsevero
Created September 7, 2014 19:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save fsevero/e3d9d5ae57d05c1e690f to your computer and use it in GitHub Desktop.
Save fsevero/e3d9d5ae57d05c1e690f to your computer and use it in GitHub Desktop.
Vagrant
# -*- mode: ruby -*-
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "django-base"
config.vm.network "forwarded_port", guest: 8000, host: 8080
config.vm.synced_folder "shared", "/home/vagrant/shared"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment