Add more warnings around radio config, stats loading, and packet decrypt (and remove accidentally committed script whoops)

This commit is contained in:
Jack Kingsman
2026-03-02 16:46:18 -08:00
parent 79db09bd15
commit d8294a8383
6 changed files with 43 additions and 46 deletions

View File

@@ -1,19 +0,0 @@
#!/bin/bash
set -e
# Colors for output
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
NC='\033[0m' # No Color
echo -e "${YELLOW}Deploying to production server...${NC}"
ssh jack@192.168.1.199 "\
cd /opt/remoteterm/ && \
sudo -u remoteterm git checkout main && \
sudo -u remoteterm git pull && \
cd frontend && \
sudo -u remoteterm bash -c 'source ~/.nvm/nvm.sh && npm install && npm run build' && \
sudo systemctl restart remoteterm && \
sudo journalctl -u remoteterm -f"
echo -e "${GREEN}=== Deploy complete! ===${NC}"