mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-11-03 03:16:10 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			421 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			421 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# -*- mode: ruby -*-
 | 
						|
# vi: set ft=ruby :
 | 
						|
 | 
						|
VAGRANT_API_VERSION = "2"
 | 
						|
Vagrant.configure(VAGRANT_API_VERSION) do |config|
 | 
						|
  config.vm.box = "ubuntu/trusty64"
 | 
						|
 | 
						|
  # Provision using shell
 | 
						|
  config.vm.host_name = "dev.paperless"
 | 
						|
  config.vm.synced_folder ".", "/opt/paperless"
 | 
						|
  config.vm.provision "shell", path: "scripts/vagrant-provision"
 | 
						|
 | 
						|
  # Networking details
 | 
						|
  config.vm.network "private_network", ip: "172.28.128.4"
 | 
						|
end
 |