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

- 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.
7 lines
209 B
Bash
Executable File
7 lines
209 B
Bash
Executable File
#!/bin/bash
|
|
OS_CONF=/etc/os-release
|
|
declare -a SUPPORTED_OS=('ubuntu' 'centos' 'fedora')
|
|
declare -a OS_DEPENDENCIES=('ansible')
|
|
MINIMUM_UBUNTU_VERSION=16.04
|
|
MINIUMUM_CENTOS_VERSION=7
|
|
MINIMIUM_FEDORA_VERSION=24 |