diff --git a/build.sh b/build.sh index 6b2371f..af54b54 100755 --- a/build.sh +++ b/build.sh @@ -2,11 +2,17 @@ # This script builds the documentation site using MkDocs and serves it to the Caddy web server. # Build the documentation site +echo "Building documentation site..." rm -rf ./site mkdocs build --clean +# Collect ssh password +echo "Enter SSH password for cory@10.10.10.40:" +read -s SSH_PASSWORD +echo "Thank you! Your password has been securely collected." + # Clean up the web server directory -ssh webmaster@10.10.10.40 'sudo rm -rf /usr/share/caddy/docs.bsct.me/*' +sshpass -p "$SSH_PASSWORD" ssh cory@10.10.10.40 'sudo rm -rf /var/caddy/docs.bsct.io/www/*' # Copy the built documentation to the web server -scp -r ./site/* webmaster@10.10.10.40:/usr/share/caddy/docs.bsct.me +sshpass -p "$SSH_PASSWORD" scp -r ./site/* cory@10.10.10.40:/var/caddy/docs.bsct.io/www/ diff --git a/docs/plex-user-guide/plex-requests.md b/docs/plex-user-guide/plex-requests.md index e5e6470..f672128 100644 --- a/docs/plex-user-guide/plex-requests.md +++ b/docs/plex-user-guide/plex-requests.md @@ -8,7 +8,7 @@ If there's a movie or TV show you'd like to watch that isn't currently available ### Making a Request -1. Visit the request portal at [https://req.bsct.me](https://req.bsct.me) +1. Visit the request portal at [https://req.bsct.io](https://req.bsct.io) 2. Log in using your Plex credentials 3. Search for the movie or TV show you want to request 4. Click the "Request" button next to the title diff --git a/mkdocs.yml b/mkdocs.yml index a908915..5b690ec 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -2,8 +2,8 @@ # Project information -site_name: bsct.me docs -site_url: https://docs.bsct.me/ +site_name: bsct.io docs +site_url: https://docs.bsct.io/ site_description: Technical documentation maintained by corybiscuit site_author: corybiscuit @@ -11,8 +11,8 @@ site_author: corybiscuit copyright: Copyright © 2025 corybiscuit # Repository information -repo_url: https://git.bsct.me/corybiscuit/docs.bsct.me -repo_name: corybiscuit/docs.bsct.me +repo_url: https://git.bsct.io/corybiscuit/docs.bsct.io +repo_name: corybiscuit/docs.bsct.io # Theme configuration theme: