diff --git a/.gitignore b/.gitignore index ba43bb91..df60140c 100644 --- a/.gitignore +++ b/.gitignore @@ -34,4 +34,7 @@ windows/Debug-OCR/** windows/x64/** # Ctags -*.tags* \ No newline at end of file +*.tags* + +# Vagrant +.vagrant/ diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 00000000..929883be --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,16 @@ +Vagrant.configure(2) do |config| + config.vm.box = "ubuntu/xenial64" + + # Uncomment this line if you want to sync other folders + # config.vm.synced_folder "/home/user/video", "/video" + + config.vm.provision "shell", inline: <<-SHELL + sudo apt-get install -y gcc + sudo apt-get install -y libcurl4-gnutls-dev + sudo apt-get install -y tesseract-ocr + sudo apt-get install -y tesseract-ocr-dev + sudo apt-get install -y libleptonica-dev + SHELL + +end +