2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-23 12:39:01 +00:00
bench/playbooks/develop/setup_bench.yml

17 lines
418 B
YAML
Raw Normal View History

2016-03-15 06:54:17 +00:00
---
- name: install bench
pip: name={{ bench_repo_path }} extra_args='-e'
become: yes
become_method: sudo
- name: init bench
command: bench init {{ bench_path }}
args:
creates: "{{ bench_path }}"
- name: install frappe app
command: bench get-app frappe https://github.com/frappe/frappe
args:
creates: "{{ bench_path }}/apps/frappe"
chdir: "{{ bench_path }}"