Initial commit: StreamFlow IPTV platform
This commit is contained in:
commit
73a8ae9ffd
1240 changed files with 278451 additions and 0 deletions
17
scripts/stop.sh
Executable file
17
scripts/stop.sh
Executable 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue