2015-03-11 22:09:54 -04:00
|
|
|
---
|
2015-05-15 23:53:54 -04:00
|
|
|
- name: verify a deployment package ready for deployment, otherwise skip deployment steps
|
|
|
|
local_action: stat path={{ rookeries_package_path }}
|
|
|
|
sudo: no
|
|
|
|
register: deploy_package
|
|
|
|
|
2015-03-11 22:09:54 -04:00
|
|
|
- name: upload + extract rookeries package to web server home
|
|
|
|
unarchive: src={{ rookeries_package_path }} dest={{ web_root_path }}
|
|
|
|
sudo: yes
|
2015-05-15 23:53:54 -04:00
|
|
|
when: deploy_package.stat.exists
|
2015-03-11 22:09:54 -04:00
|
|
|
|
|
|
|
- name: install rookeries dependencies
|
|
|
|
pip: requirements=requirements.txt virtualenv={{ rookeries_venv }} chdir={{ app_root_path }}
|
2015-05-15 23:53:54 -04:00
|
|
|
when: deploy_package.stat.exists
|
2015-03-11 22:09:54 -04:00
|
|
|
|
2015-06-22 08:09:13 -04:00
|
|
|
# TODO Remove after transition to CouchDB as a store.
|
2015-03-11 22:09:54 -04:00
|
|
|
- name: install extra MySQL python connector dependency
|
|
|
|
pip: name=mysql-connector-python virtualenv={{ rookeries_venv }} version=1.1.6
|
2015-05-15 23:53:54 -04:00
|
|
|
extra_args="--allow-external mysql-connector-python --allow-unverified mysql-connector-python"
|
|
|
|
when: deploy_package.stat.exists
|
2015-03-11 22:09:54 -04:00
|
|
|
|
|
|
|
- name: fix permissions on extracted web app
|
|
|
|
file: path={{ app_root_path }} owner={{ web_server_group }} group={{ web_server_group }}
|
|
|
|
state=directory recurse=yes
|
2015-05-15 23:53:54 -04:00
|
|
|
when: deploy_package.stat.exists
|
2015-03-11 22:09:54 -04:00
|
|
|
|
2015-06-22 08:09:13 -04:00
|
|
|
- name: install frontend dependencies for app
|
|
|
|
npm: path={{ app_root_path }} state=present registry=http://registry.npmjs.org/
|
2015-05-20 10:47:07 -04:00
|
|
|
notify:
|
|
|
|
- restart uwsgi app
|
2015-05-15 23:53:54 -04:00
|
|
|
when: deploy_package.stat.exists
|