From 44cc24b1af5e7657270cddca3e6f73739023e049 Mon Sep 17 00:00:00 2001 From: James Wang Date: Tue, 22 Dec 2015 20:17:39 -0500 Subject: [PATCH] Add mysql dependencies --- scripts/requirements.txt | 3 ++- scripts/setup.sh | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/requirements.txt b/scripts/requirements.txt index 1167f2f..34e95c7 100644 --- a/scripts/requirements.txt +++ b/scripts/requirements.txt @@ -1,2 +1,3 @@ Flask -gunicorn \ No newline at end of file +gunicorn +flask-mysql \ No newline at end of file diff --git a/scripts/setup.sh b/scripts/setup.sh index 043bc62..ed0a903 100644 --- a/scripts/setup.sh +++ b/scripts/setup.sh @@ -5,7 +5,7 @@ sudo apt-get -y update sudo apt-get -y upgrade echo "Installing dependencies..." -sudo apt-get -y install python-pip +sudo apt-get -y install python-pip libmysqlclient-dev echo "Installing pip dependencies..." sudo pip install -r scripts/requirements.txt