- Add initializer count logging in DiscoveryServiceBootstrapper - Add route structure analysis in RouterSetup - Add request parameter logging in HttpRouter - Update PHP production config for better OPcache handling - Fix various config and error handling improvements
18 lines
375 B
Bash
Executable File
18 lines
375 B
Bash
Executable File
#!/bin/bash
|
|
# Quick deployment script with force flag
|
|
# Usage: ./deploy.sh
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
echo "🚀 Starting deployment to production..."
|
|
echo ""
|
|
|
|
ansible-playbook \
|
|
-i inventories/production/hosts.yml \
|
|
playbooks/deploy-rsync-based.yml \
|
|
--vault-password-file .vault_pass \
|
|
--extra-vars 'force_deploy=true'
|
|
|
|
echo ""
|
|
echo "✅ Deployment completed!"
|