Install Info

This commit is contained in:
rootzoll 2022-01-25 19:33:30 +01:00
parent 0dcb593e74
commit b7735f8240
2 changed files with 11 additions and 3 deletions
home.admin/config.scripts

@ -88,8 +88,11 @@ WantedBy=multi-user.target
# TODO: remove after experimental step
sudo ufw allow 11111 comment 'WebAPI Develop'
source <(/home/admin/_cache.sh export internet_localip)
# install info
echo "# the API doc should now be available under http://[LOCALHOST]/api/docs or try port 11111 for testing"
echo "# the API is now running on port 11111 & doc available under:"
echo "# http://${internet_localip}/api/docs"
echo "# check for systemd: sudo systemctl status blitzapi"
echo "# check for logs: sudo journalctl -f -u blitzapi"

@ -13,7 +13,7 @@ if [ $# -eq 0 ] || [ "$1" = "-h" ] || [ "$1" = "--help" ] || [ "$1" = "-help" ];
echo "blitz.web.ui.sh on [?GITHUBUSER] [?REPO] [?BRANCH]"
echo "blitz.web.ui.sh update"
echo "blitz.web.ui.sh off"
exit 1
exit 0
fi
DEFAULT_GITHUB_USER="cstenglein"
@ -57,7 +57,12 @@ if [ "$1" = "1" ] || [ "$1" = "on" ]; then
sudo cp -r /home/admin/blitz_web/build/* /var/www/public
sudo chown www-data:www-data -R /var/www/public
exit 1
# install info
source <(/home/admin/_cache.sh export internet_localip)
echo "# The WebUI is now available under:"
echo "# http://${internet_localip}"
exit 0
fi
###################