mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00

- Setup single/multi node BigchainDB cluster using - Vagrant - Ansible - Updated documentation
12 lines
253 B
YAML
12 lines
253 B
YAML
---
|
|
- name: Install dependencies
|
|
yum:
|
|
name: "{{ item }}"
|
|
state: present
|
|
update_cache: yes
|
|
with_items: "{{ dependencies_yum }}"
|
|
tags: [bigchaindb-driver]
|
|
|
|
- name: Install pip
|
|
shell: "easy_install-3.5 pip"
|
|
tags: [bigchaindb-driver] |