Initial commit: StreamFlow IPTV platform

This commit is contained in:
aiulian25 2025-12-17 00:42:43 +00:00
commit 73a8ae9ffd
1240 changed files with 278451 additions and 0 deletions

17
scripts/stop.sh Executable file
View file

@ -0,0 +1,17 @@
#!/bin/bash
# StreamFlow IPTV - Stop Script
echo "🛑 Stopping StreamFlow IPTV..."
docker-compose down
if [ $? -eq 0 ]; then
echo "✅ StreamFlow has been stopped successfully."
else
echo "❌ Failed to stop StreamFlow. Please check for errors."
exit 1
fi
echo ""
echo "📝 To start again, run: ./start.sh or npm start"