chore: clean publish artifacts and add sources

This commit is contained in:
2025-12-09 16:53:34 -06:00
parent 6138c0a60c
commit 673fa06d1e
62 changed files with 9137 additions and 0 deletions

22
quick-restart.sh Executable file
View File

@@ -0,0 +1,22 @@
#!/bin/bash
# Quick restart without rebuild (for configuration changes)
echo "Restarting SkyArtShop services..."
sudo systemctl restart skyartshop
sleep 2
if systemctl is-active --quiet skyartshop; then
echo "✓ Application restarted successfully"
# Quick test
if curl -s -o /dev/null -w "%{http_code}" http://localhost | grep -q "200"; then
echo "✓ Website is responding"
else
echo "⚠ Website may have issues"
fi
else
echo "✗ Application failed to start"
echo "View logs: sudo journalctl -u skyartshop.service -n 50"
fi