upgraded install script, now supports cli arguments to dynamically adjust various settings, eg. domain, primary port, subdomains, names, etc.

This commit is contained in:
Joshua Ashton
2024-09-19 14:38:41 -06:00
parent 1761a295a9
commit 8e9b82829b
5 changed files with 118 additions and 9 deletions
+9
View File
@@ -0,0 +1,9 @@
SUB=("api=1" "test=2" "portfolio=3")
arraylength=${#SUB[@]}
for (( i=0; i<${arraylength}; i++ ));
do
test="$(echo ${SUB[$i]} | cut -f1 -d=)"
test2="$(echo ${SUB[$i]} | cut -f2 -d=)"
echo $test $test2
done