Sobre minha configuração de Homestead, tento fazer com que meu script after.sh
configure automaticamente o xdebug para uma atualização ou recriação de uma caixa, para que eu possa enfrentar minha configuração sem precisar refazê-lo manualmente em todo o tempo.
O script é o seguinte:
#!/bin/sh
echo "Configuring Xdebug"
ip=$(netstat -rn | grep "^0.0.0.0 " | cut -d " " -f10)
xdebug_config="/etc/php/$(php -v | head -n 1 | awk '{print $2}'|cut -c 1-3)/mods-available/xdebug.ini"
echo "IP for the xdebug to connect back: ${ip}"
echo "Xdebug Configuration path: ${xdebug_config}"
echo "Port for the Xdebug to connect back: ${XDEBUG_PORT}"
echo "Optimize for ${IDE} ide"
first_line=$(head -n1 ${xdebug_config})
if [ $IDE=='atom' ]; then
echo "Configuring xdebug for ATOM ide"
sudo cat <<EOL >${xdebug_config}
${first_line}
xdebug.remote_enable = 1
xdebug.remote_host=${ip}
xdebug.remote_port = ${XDEBUG_PORT}
xdebug.max_nesting_level = 1000
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_autostart=true
xdebug.remote_log=xdebug.log
EOL
fi
E meu Homestead.yml
é o seguinte:
ip: 192.168.10.10
memory: 2048
cpus: 1
provider: virtualbox
authorize: ~/.ssh/id_rsa.pub
timeout: 120
keys:
- ~/.ssh/id_rsa
folders:
-
map: /home/pcmagas/Kwdikas/php/apps/ellakcy_member_app/
to: /home/vagrant/code
sites:
-
map: homestead.test
to: /home/vagrant/code/web
type: symfony
databases:
- homestead
- homestead-test
variables:
- key: database_host
value: 127.0.0.1
- key: database_port
value: 3306
- key: database_name
value: homestead
- key: database_user
value: homestead
- key: database_password
value: secret
- key: smtp_host
value: localhost
- key: smtp_port
value: 1025
- key: smtp_user
value: [email protected]
- key: IDE
value: atom
- key: XDEBUG_PORT
value: 9091
name: ellakcy-member-app
hostname: ellakcy-member-app
Eu configurei as seguintes variáveis ambientais adicionais:
- key: IDE
value: atom
- key: XDEBUG_PORT
value: 9091
Portanto, posso oferecer uma configuração refinada para o xdebug.
Mas quando executo vagrant provision
, obtenho o seguinte erro (para economizar espaço, fiz nbot colocar toda a saída):
ellakcy-member-app: /tmp/vagrant-shell: 37: /tmp/vagrant-shell: cannot create /etc/php/7.2/mods-available/xdebug.ini: Permission denied
Isso é causado pelo comando:
sudo cat <<EOL >${xdebug_config}
${first_line}
xdebug.remote_enable = 1
xdebug.remote_host=${ip}
xdebug.remote_port = ${XDEBUG_PORT}
xdebug.max_nesting_level = 1000
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_autostart=true
xdebug.remote_log=xdebug.log
EOL
Então, eu quero saber como eu posso configurar automaticamente a caixa Vagrant da Homestead? (por exemplo, a configuração do xdebug)