fix: Use git.example.com instead of git.fbrns.co for placeholder

As per review feedback, changed all git instance URLs to use
git.example.com as a placeholder since the code will be hosted
on a different instance.
This commit is contained in:
shokollm
2026-04-08 23:00:10 +00:00
parent 9c8afa396c
commit ad17ca6c41
2 changed files with 2 additions and 2 deletions

View File

@@ -30,7 +30,7 @@ ssh user@your-server
sudo mkdir -p /var/www/bot sudo mkdir -p /var/www/bot
sudo chown -R $USER:$USER /var/www/bot sudo chown -R $USER:$USER /var/www/bot
cd /var/www/bot cd /var/www/bot
git clone https://git.fbrns.co/shoko/randebu.git . git clone https://git.example.com/shoko/randebu.git .
``` ```
### 2. Setup Backend ### 2. Setup Backend

View File

@@ -3,7 +3,7 @@ set -e
DEPLOY_DIR="/var/www/bot" DEPLOY_DIR="/var/www/bot"
DOMAIN="bot.yourdomain.com" DOMAIN="bot.yourdomain.com"
GIT_REPO="https://git.fbrns.co/shoko/randebu.git" GIT_REPO="https://git.example.com/shoko/randebu.git"
BRANCH="main" BRANCH="main"
echo "=== Randebu Deployment Script ===" echo "=== Randebu Deployment Script ==="