mirror of
https://github.com/frappe/bench.git
synced 2025-02-10 22:58:30 +00:00
- 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
20 lines
431 B
YAML
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 |