- Web: Setup Storybook, added addons, configured Tailwind, added stories for UI components. - Backend: Updated API router, database, workers, and auth in common. - Stream Server: Removed SQLx queries and updated auth. - Docs & Scripts: Updated documentation and recovery scripts.
17 lines
350 B
Bash
Executable file
17 lines
350 B
Bash
Executable file
#!/bin/bash
|
|
echo "🛑 Stopping Minimal Stack..."
|
|
|
|
if [ -f backend.pid ]; then
|
|
kill $(cat backend.pid) 2>/dev/null || true
|
|
rm backend.pid
|
|
fi
|
|
|
|
if [ -f frontend.pid ]; then
|
|
kill $(cat frontend.pid) 2>/dev/null || true
|
|
rm frontend.pid
|
|
fi
|
|
|
|
# Stop Docker infra
|
|
docker compose -f docker-compose.yml stop postgres redis
|
|
|
|
echo "✅ Stopped."
|