2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-23 20:49:01 +00:00
bench/playbooks/develop/macosx.yml
Rushabh Mehta e426c00e3a cleanup
2016-03-15 18:11:08 +05:30

35 lines
790 B
YAML

---
- hosts: localhost
vars:
bench_repo_path: "/usr/local/frappe/bench-repo"
bench_path: "/Users/{{ ansible_user_id }}/frappe/frappe-bench"
mysql_config_template: "templates/simple_mariadb_config.cnf"
mysql_conf_dir: /usr/local/etc/my.cnf.d
tasks:
# install pre-requisites
- name: install prequisites
homebrew: name={{ item }} state=present
with_items:
- cmake
- redis
- mariadb
- nodejs
- npm
when: ansible_os_family == 'Darwin'
# install wkhtmltopdf
- name: cask installs
homebrew_cask: name={{ item }} state=present
with_items:
- wkhtmltopdf
when: ansible_os_family == 'Darwin'
# setup MariaDB
- include: setup_mariadb.yml
# setup frappe-bench
- include: setup_bench.yml