Skip to content

Commit 161b98e

Browse files
author
Izaron
committed
Added Vagrantfile
1 parent 943bb57 commit 161b98e

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,7 @@ windows/Debug-OCR/**
3434
windows/x64/**
3535

3636
# Ctags
37-
*.tags*
37+
*.tags*
38+
39+
# Vagrant
40+
.vagrant/

Vagrantfile

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Vagrant.configure(2) do |config|
2+
config.vm.box = "ubuntu/xenial64"
3+
4+
# Uncomment this line if you want to sync other folders
5+
# config.vm.synced_folder "/home/user/video", "/video"
6+
7+
config.vm.provision "shell", inline: <<-SHELL
8+
sudo apt-get install -y gcc
9+
sudo apt-get install -y libcurl4-gnutls-dev
10+
sudo apt-get install -y tesseract-ocr
11+
sudo apt-get install -y tesseract-ocr-dev
12+
sudo apt-get install -y libleptonica-dev
13+
SHELL
14+
15+
end
16+

0 commit comments

Comments
 (0)