mirror of
https://github.com/frappe/bench.git
synced 2024-11-12 08:16:28 +00:00
36 lines
870 B
YAML
Executable File
36 lines
870 B
YAML
Executable File
---
|
|
- include: setup_essentials.yml
|
|
|
|
- hosts: localhost
|
|
become: yes
|
|
become_user: root
|
|
vars:
|
|
bench_repo_path: "/home/{{ ansible_user_id }}/.bench"
|
|
bench_path: "/home/{{ ansible_user_id }}/frappe-bench"
|
|
mysql_conf_tpl: ../files/mariadb_config.cnf
|
|
mysql_conf_dir: /etc/mysql/conf.d/
|
|
roles:
|
|
- prerequisites
|
|
- mariadb
|
|
- wkhtmltopdf
|
|
- nodejs
|
|
- psutils
|
|
tasks:
|
|
- debug:
|
|
var: run_travis
|
|
|
|
# setup frappe-bench
|
|
- include: includes/setup_bench.yml
|
|
when: not run_travis
|
|
|
|
<<<<<<< 7a7c61105c87ac4cccea9c39c23691b0a61f9836
|
|
# setup development environment
|
|
- include: includes/setup_dev_env.yml
|
|
when: not production and not run_travis
|
|
|
|
=======
|
|
# setup development environment
|
|
- include: includes/setup_dev_env.yml
|
|
when: not production and not run_travis
|
|
>>>>>>> create roles to install pre-requisites
|