Update termux-install.sh

This commit is contained in:
Abhi
2023-12-17 22:53:14 +05:30
committed by GitHub
parent 8fd770bef6
commit 9ffea023eb

View File

@@ -58,6 +58,15 @@ if [[ $rmbg_key = "" ]]; then
echo "NOTE: API Not set you'll not be able to use remove background modules"
fi
echo
echo "Enter VT_KEY for VirusTotal"
echo "You can get it here -> https://www.remove.bg/dashboard#api-key"
read -r -p "VT_KEY > " vt_key
if [[ $vt_key = "" ]]; then
echo "NOTE: API Not set you'll not be able to use VirusTotal module"
fi
echo "Choose database type:"
echo "[1] MongoDB (your url)"
echo "[2] Sqlite"
@@ -88,6 +97,7 @@ DATABASE_URL=${db_url}
APIFLASH_KEY=${apiflash_key}
RMBG_KEY=${rmbg_key}
VT_KEY=${vt_key}
EOL
python3 install.py 3 || exit 3