mirror of
https://github.com/frappe/bench.git
synced 2024-11-11 15:51:03 +00:00
39 lines
961 B
YAML
39 lines
961 B
YAML
---
|
|
- hosts: localhost
|
|
become: yes
|
|
become_user: root
|
|
vars:
|
|
bench_repo_path: "/Users/{{ ansible_user_id }}/.bench"
|
|
bench_path: "/Users/{{ ansible_user_id }}/frappe-bench"
|
|
tasks:
|
|
# install pre-requisites
|
|
- name: install prequisites
|
|
homebrew: name={{ item }} state=present
|
|
with_items:
|
|
- cmake
|
|
- redis
|
|
- mariadb
|
|
- nodejs
|
|
|
|
# install wkhtmltopdf
|
|
- name: cask installs
|
|
homebrew_cask: name={{ item }} state=present
|
|
with_items:
|
|
- wkhtmltopdf
|
|
|
|
- name: configure mariadb
|
|
include: ../prerequisites/roles/mariadb/tasks/main.yml
|
|
vars:
|
|
mysql_conf_tpl: ../prerequisites/files/mariadb_config.cnf
|
|
|
|
- name: Install MySQLdb in global env
|
|
pip: name=mysql-python version=1.2.5
|
|
|
|
# setup frappe-bench
|
|
- include: includes/setup_bench.yml
|
|
|
|
# setup development environment
|
|
- include: includes/setup_dev_env.yml
|
|
when: not production
|
|
|
|
... |