mirror of
https://github.com/frappe/bench.git
synced 2024-11-12 00:06:36 +00:00
7a7c61105c
* Added ERPNext to Easy Install * fix site_name issue * fix site_name issue * uncomment * fix -ask password * Added ERPNext install to centos, debian, macosx * Set site1.local as default sitename * Update README.md * Restrict ERPNext installation for production * Added checks for existing sites and apps * Included setup_erpnext.yml in setup_dev_env.yml * Fixed erpnext ImportError issue with bench new-site command.
20 lines
425 B
YAML
20 lines
425 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: includes/setup_erpnext.yml |