2
0
mirror of https://github.com/frappe/bench.git synced 2025-02-10 22:58:30 +00:00
bench/playbooks/develop/includes/setup_dev_env.yml
Ameya Shenoy c7062e1b38
Refactor code
- bumped up ansible from 2.3.1 to 2.4.1
- renamed include to include_tasks since it has been deprecated in
ansible 2.4
2018-02-05 01:50:10 +05:30

20 lines
431 B
YAML

---
# Setup Procfile
- name: setup procfile
command: bench setup procfile
args:
creates: "{{ bench_path }}/Procfile"
chdir: "{{ bench_path }}"
# Setup Redis env for RQ
- name: setup redis
command: bench setup redis
args:
creates: "{{ bench_path }}/config/redis_socketio.conf"
chdir: "{{ bench_path }}"
# Setup an ERPNext site called site1.local
- include_tasks: includes/setup_erpnext.yml