chore: clean up repo root — remove obsolete files, organize infra into docs/

Remove 21MB Vuexy theme directory (replaced by custom EZSCALE design system),
old session logs, patch notes, screenshots, and discovery artifacts. Move
infrastructure files (Horizon config, install script, VirtFusion API spec,
discover script) into docs/ subdirectories. Update CLAUDE.md reference docs.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Claude Dev
2026-03-16 11:49:07 -04:00
parent b4ef90465c
commit 1d4a9f33f6
1468 changed files with 0 additions and 178001 deletions

View File

@@ -0,0 +1,38 @@
#!/bin/bash
# Install Horizon Supervisor Script
# Run this script with sudo to install and configure Supervisor for Laravel Horizon
set -e
echo "Installing Supervisor..."
sudo apt update
sudo apt install -y supervisor
echo "Copying Horizon supervisor config..."
sudo cp /opt/projects/ezscale_site/ezscale-horizon.conf /etc/supervisor/conf.d/
echo "Creating log directory..."
sudo mkdir -p /opt/projects/ezscale_site/website/storage/logs
sudo chown -R ezscale:ezscale /opt/projects/ezscale_site/website/storage/logs
echo "Reloading supervisor configuration..."
sudo supervisorctl reread
sudo supervisorctl update
echo "Starting Horizon..."
sudo supervisorctl start ezscale-horizon
echo "Checking status..."
sudo supervisorctl status ezscale-horizon
echo ""
echo "✓ Horizon supervisor installed successfully!"
echo ""
echo "Useful commands:"
echo " sudo supervisorctl status ezscale-horizon # Check status"
echo " sudo supervisorctl stop ezscale-horizon # Stop Horizon"
echo " sudo supervisorctl start ezscale-horizon # Start Horizon"
echo " sudo supervisorctl restart ezscale-horizon # Restart Horizon"
echo " sudo supervisorctl tail ezscale-horizon # View logs"
echo ""