Commit b56b0404 by vik

Playbook vars, changes

parent a77bc30e
......@@ -8,12 +8,17 @@
sudo: True
# Check out mitx repo to $app_base_dir
- name: Create virtualenv dir
sudo: True
file: path=/opt/edx state=directory owner=ubuntu group=ubuntu
- name: set permissions on $app_base_dir sgid for edx
file: path=$app_base_dir owner=root group=edx mode=2775 state=directory
file: path=$app_base_dir owner=ubuntu group=edx mode=2775 state=directory
file: path=/opt/edx owner=ubuntu group=edx mode=2775 state=directory
sudo: True
- name: install git and its recommends
apt: pkg=git state=installed install_recommends=yes
- name: install a bunch of system packages on which mlapi relies
apt: pkg={{item}} state=present
with_items: mlapi_debian_pkgs
sudo: True
- name: git checkout ml-service-api repo into $app_base_dir
git: dest=$app_base_dir/ml-service-api repo=git@github.com:edx/ml-service-api.git
......
mlapi_source_repo: git@github.com:edx/ml-service-api.git
ml_source_repo: git@github.com:edx/machine-learning.git
mlapi_debian_pkgs:
-python
-gcc
-g++
-aspell
-python-virtualenv
-build-essential
-python-dev
-gfortran
-libfreetype6-dev
-libpng12-dev
-libxml2-dev
-libxslt-dev
-libreadline6
-libreadline6-dev
-redis-server
-python-pip
-ipython
-nginx
-libmysqlclient-dev
-libblas3gf
-libblas-dev
-liblapack3gf
-liblapack-dev
-libatlas-base-dev
-curl
-yui-compressor
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment