Skip to content

Instantly share code, notes, and snippets.

@mikemix
mikemix / debug-console
Last active July 13, 2018 07:59
Shell script wrapper for debugging Symfony console applications with XDebug and Docker
#!/bin/sh -e
##
# Fill this accordingly!
# The "server" has to be configured in phpStorm (Settings > Language & Frameworks > PHP > Servers).
# Put the name inside the quotes
phpstorm_server_name="localhost"
##
# Put me in bin/ alongside the console script
@Stubbs
Stubbs / install_jenkins.sh
Created February 3, 2012 10:35
Script to install everything you need for PHP CI on a Debian box.
#!/bin/bash
## Install Git #########################################
apt-get install git
## Install Ant #########################################
apt-get install ant
## Install Jenkins #####################################