- Added docs/AUTH.md with authentication system documentation - Added server scripts (auto-deploy, backup, monitor, webhook-server) - Updated README with deployment info and project structure - Added gitignore for backup archives
9 lines
222 B
Bash
Executable File
9 lines
222 B
Bash
Executable File
#!/bin/bash
|
|
# Manual deploy script - call this when you want immediate deployment
|
|
# Usage: ./deploy-now.sh
|
|
|
|
echo "🚀 Starting immediate deployment..."
|
|
|
|
/opt/scripts/auto-deploy.sh
|
|
|
|
echo "✅ Manual deployment completed!" |