forked from athe89113/project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
24 lines (22 loc) · 669 Bytes
/
setup.sh
File metadata and controls
24 lines (22 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env bash
apt-get update
apt-get install -y libmysqlclient-dev \
libjpeg-dev \
zlib1g-dev \
libpng12-dev \
python-pip \
python-dev \
fonts-noto-cjk \
libsasl2-dev \
freetds-dev \
pkg-config \
libfreetype6-dev \
libxml2-dev \
libxslt-dev \
lib32z1-dev \
python-tk
echo "installing python package"
pip install -r requirements.txt
echo "installing node"
curl -sL https://deb.nodesource.com/setup_6.x | bash -
apt-get install -y nodejs