8 lines
616 B
Bash
Executable file
8 lines
616 B
Bash
Executable file
#!/bin/bash
|
|
# Script to rename bot from "Seapac Ops Bot" to "The APAC OpsBot"
|
|
set -e
|
|
echo "🔄 Renaming bot from 'Seapac Ops Bot' to 'The APAC OpsBot'..."
|
|
sed -i 's/Seapac Ops Bot/The APAC OpsBot/g' backend/app/services/openai_service.py backend/tests/test_api.py backend/tests/test_config.py backend/tests/test_openai_service.py
|
|
sed -i 's/🤖 Seapac Ops Bot/The APAC OpsBot/g' frontend/src/components/SimpleLogin.tsx
|
|
sed -i 's/Seapac Ops Bot/The APAC OpsBot/g' frontend/src/components/ChatInterface.tsx frontend/src/App.tsx frontend/public/index.html DEPLOYMENT.md QUICKSTART.md
|
|
echo "✅ Done! Run: ./deploy.sh"
|