Moved the Vagrant stuff around to keep the root tidy

This commit is contained in:
Daniel Quinn
2016-01-24 21:35:05 +01:00
parent 54366c1d27
commit 0612cd53b7
2 changed files with 2 additions and 3 deletions

12
scripts/vagrant-provision Normal file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
# install packages
sudo apt-get update
sudo apt-get build-dep -y python-imaging
sudo apt-get install -y libjpeg8 libjpeg62-dev libfreetype6 libfreetype6-dev
sudo apt-get install -y build-essential python3-dev python3-pip sqlite3 libsqlite3-dev git
# setup python project
pushd /opt/paperless
sudo pip3 install -r requirements.txt
popd