mirror of
https://github.com/Dvorinka/bizoni.git
synced 2026-06-03 18:22:57 +00:00
19 lines
479 B
Bash
19 lines
479 B
Bash
#!/bin/bash
|
|
|
|
# Remove local blog files and keep only remote blogs
|
|
# Run this in your bizoni directory
|
|
|
|
echo "🗑️ Removing local blog files..."
|
|
|
|
# Remove all blog files
|
|
rm -rf blog/
|
|
|
|
echo "✅ Local blog files removed!"
|
|
echo ""
|
|
echo "📝 Next steps:"
|
|
echo "1. Deploy updated backend to server"
|
|
echo "2. Backend will now work with remote blogs only"
|
|
echo "3. Admin interface will connect to server API"
|
|
echo ""
|
|
echo "🌐 Your live blogs will remain untouched on the server"
|