1
0
mirror of https://github.com/bigchaindb/bigchaindb.git synced 2024-06-17 01:53:20 +02:00
bigchaindb/pkg/ansible/roles/bigchaindb-driver/tasks/common.yml
muawiakh f2e1b4ac80 Automation for single node deployment for quickstart
- Change consists of two deployment models:
  - Using Vagrant(single node, with/without docker)
  - Using Ansible(single node, with/without docker)
- Updated quickstart documentation.
- Some WIP comments, which will be addressed later. Depending on the
  requirements.
2017-09-14 14:00:13 +02:00

14 lines
355 B
YAML

---
- name: Upgrade pip
shell: "pip3 install --upgrade pip"
when: python_pip_upgrade
tags: [bigchaindb-driver]
- name: Upgade setuptools
shell: "pip3 install --upgrade setuptools"
when: python_setuptools_upgrade
tags: [bigchaindb-driver]
- name: Install BigchainDB Driver
shell: "pip3 install bigchaindb-driver"
tags: [bigchaindb-driver]