You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
327 B
Bash
22 lines
327 B
Bash
#!/bin/bash
|
|
|
|
#dev-begin
|
|
DIR="${BASH_SOURCE%/*}"
|
|
if [[ ! -d "$DIR" ]]; then DIR="$PWD"; fi
|
|
. "$DIR/lib.sh"
|
|
#dev-end
|
|
|
|
#include lib.sh
|
|
|
|
#=======================================
|
|
# MAIN SCRIPT
|
|
#=======================================
|
|
|
|
setup_update_repo
|
|
check_git
|
|
check_docker
|
|
check_docker_compose
|
|
check_jq
|
|
setup_packages
|
|
setup_node
|