1
0
mirror of https://github.com/donaldzou/WGDashboard.git synced 2024-10-01 09:00:13 +02:00

Removed using venv for now

This commit is contained in:
Donald Cheng Hong Zou 2021-12-25 16:29:33 -05:00
parent 5b47fc16d9
commit 9890d4f3bc

View File

@ -45,24 +45,24 @@ install_wgd(){
fi fi
printf "| Installing latest Python dependencies |\n" printf "| Installing latest Python dependencies |\n"
_check_and_set_venv # _check_and_set_venv
${VIRTUAL_ENV}/bin/python3 -m pip install -U pip # ${VIRTUAL_ENV}/bin/python3 -m pip install -U pip
# ${VIRTUAL_ENV}/bin/python3 -m pip install virtualenv # ${VIRTUAL_ENV}/bin/python3 -m pip install virtualenv
# set up the local environment # set up the local environment
${VIRTUAL_ENV}/bin/python3 -m pip install -U -r requirements.txt # ${VIRTUAL_ENV}/bin/python3 -m pip install -U -r requirements.txt
python3 -m pip install -U -r requirements.txt
printf "| WGDashboard installed successfully! |\n" printf "| WGDashboard installed successfully! |\n"
printf "| Preparing the systemctl unit file |\n" printf "| Preparing the systemctl unit file |\n"
sed -i "s#{{APP_ROOT}}#${APP_ROOT}#" wg-dashboard.service # sed -i "s#{{APP_ROOT}}#${APP_ROOT}#" wg-dashboard.service
sed -i "s#{{VIRTUAL_ENV}}#${VIRTUAL_ENV}#" wg-dashboard.service # sed -i "s#{{VIRTUAL_ENV}}#${VIRTUAL_ENV}#" wg-dashboard.service
# cat wg-dashboard.service | sudo SYSTEMD_EDITOR=tee systemctl edit --force --full wg-dashboard.service # cat wg-dashboard.service | sudo SYSTEMD_EDITOR=tee systemctl edit --force --full wg-dashboard.service
systemctl daemon-reload # systemctl daemon-reload
printf "| Consider 'systemctl enable wg-dashboard' |\n" # printf "| Consider 'systemctl enable wg-dashboard' |\n"
printf " and 'systemctl start wg-dashboard'\n" # printf " and 'systemctl start wg-dashboard'\n"
printf " use '${0} stop' before starting with systemctl\n" # printf " use '${0} stop' before starting with systemctl\n"
echo echo
printf "| Now starting Dashboard in background |\n" printf "| Now starting Dashboard in background |\n"
start_wgd start_wgd
} }