diff --git a/.gitignore b/.gitignore index bdeae4a..abe1285 100644 --- a/.gitignore +++ b/.gitignore @@ -11,33 +11,8 @@ pids *.seed *.pid.lock -# Directory for instrumented libs generated by jscoverage/JSCover -lib-cov - -# Coverage directory used by tools like istanbul -coverage - -# nyc test coverage -.nyc_output - -# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) -.grunt - -# Bower dependency directory (https://bower.io/) -bower_components - -# node-waf configuration -.lock-wscript - -# Compiled binary addons (https://nodejs.org/api/addons.html) -build/Release - # Dependency directories node_modules/ -jspm_packages/ - -# TypeScript v1 declaration files -typings/ # Optional npm cache directory .npm @@ -51,18 +26,11 @@ typings/ # Output of 'npm pack' *.tgz -# Yarn Integrity file -.yarn-integrity - # dotenv environment variables file .env -# next.js build output -.next - .idea *.pem -ecosystem.config.js package-lock.json connections.json connections.json2 @@ -106,9 +74,20 @@ modules/**/*.js.map addons/**/*.js addons/**/*.js.map +scripts/hpm.js +scripts/hpm.js.map + +scripts/hyp-config.js +scripts/hyp-config.js.map + +plugins/.state.json plugins/repos +plugins/*.js +.gitmodules docker/redis/data docker/elasticsearch/data -docker/eosio/data docker/rabbitmq/data +docker/eosio/data + +configuration_backups diff --git a/DEPRECATED_install.sh b/DEPRECATED_install.sh deleted file mode 100644 index 361679d..0000000 --- a/DEPRECATED_install.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env bash - -curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash - -sudo apt-get install -y nodejs -sudo npm install pm2 -g -npm install diff --git a/DEPRECATED_install_env.sh b/DEPRECATED_install_env.sh deleted file mode 100644 index 4ba3770..0000000 --- a/DEPRECATED_install_env.sh +++ /dev/null @@ -1,303 +0,0 @@ -#!/usr/bin/env bash -set -eo pipefail - -#terminal colors -COLOR_NC=$(tput sgr0) -export COLOR_NC -COLOR_RED=$(tput setaf 1) -export COLOR_RED -COLOR_GREEN=$(tput setaf 2) -export COLOR_GREEN -COLOR_YELLOW=$(tput setaf 3) -export COLOR_YELLOW -COLOR_BLUE=$(tput setaf 4) -export COLOR_BLUE - -#variables -INITIAL_PARAMS="$*" -GLOBAL="y" -RABBIT_USER="hyperion" -RABBIT_PASSWORD="123456" -NODE=false -ELASTIC=false -REDIS=false -RABBIT=false -RAM=0 - -help_function() { - echo -e "\nAutomated shell script that installs all dependencies and then configure Hyperion." - echo -e "\nUsage: ./install.env