Skip to content

Instantly share code, notes, and snippets.

@hemanth22
Forked from fsevero/Vagrantfile
Created October 9, 2018 06:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hemanth22/0fd0eeff3ae0d2eceee8de600619a509 to your computer and use it in GitHub Desktop.
Save hemanth22/0fd0eeff3ae0d2eceee8de600619a509 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