status-react/scripts/setup

46 lines
1005 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
########################################################################
2017-12-01 17:17:25 +00:00
# This install script will setup your development dependencies on OS X
# or Ubuntu. Ubuntu 16.04 is the only tested version.
#
2017-12-01 17:17:25 +00:00
# Usage: scripts/setup
########################################################################
_current_dir=$(cd "${BASH_SOURCE%/*}" && pwd)
2017-12-01 17:17:25 +00:00
source "$_current_dir/lib/setup/path-support.sh"
source_lib "output.sh"
source_lib "packages.sh"
source_lib "platform.sh"
source_lib "installers.sh"
2017-12-01 17:17:25 +00:00
exit_unless_os_supported
load_nvm_if_available
load_rvm_if_available
####
setup_header "Installing requirements..."
2017-12-01 17:17:25 +00:00
install_and_setup_package_manager
install_wget
2017-12-01 17:17:25 +00:00
install_java8
install_clojure_cli
2017-12-01 17:17:25 +00:00
install_leiningen
install_node
2017-12-01 17:17:25 +00:00
install_watchman
install_react_native_cli
2017-12-01 17:17:25 +00:00
install_android_sdk
install_android_ndk
2017-12-01 17:17:25 +00:00
install_maven
install_cocoapods
####
echo && setup_header "Installing dependencies..."
dependency_setup make prepare-android
dependency_setup make prepare-ios
setup_complete