This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
APTOPTIONS="-y" | |
MYSQLPASS="nopass" | |
echo "--------------------------------------------" | |
echo " Ubuntu Development Environment Bootstraper " | |
echo "--------------------------------------------" | |
echo "-> Preparing APT and Updating Ubuntu ..." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost sitename.dev:80> | |
DocumentRoot /var/www/sitename.dev | |
ServerName <sitename.dev> | |
ServerAdmin <[email protected]> | |
ErrorLog /var/logs/apache2/sitename.dev-error_log | |
<Directory "/var/www/sitename.dev"> | |
Options Indexes FollowSymLinks Includes ExecCGI | |
AllowOverride All |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo apt-get install ruby ruby-dev rubygems | |
sudo gem install berkshelf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if test -z "$1" | |
then | |
echo 'Please supply an action. (add)' | |
exit 0 | |
else | |
if [[ "$1" -ne "add" ]] || [[ $1 -ne "scaffold" ]]; then | |
echo 'Please supply a valid action. [add]' | |
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# --------------------------------------------------------------- | |
# Apache VirtualHost Builder for OSX | |
# | |
# This script tries to make it easier to add Apache VirtualHosts | |
# to the default install of OSX. For the script to run `as-is` | |
# two changes must me made to Apache. | |
# | |
# 1. Create a new folder in /etc/apache2 named vhosts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project name="ProjectChecker" default="build" basedir="."> | |
<target name="build" depends="tools,testing" /> | |
<target name="tools" depends="tools.phplint,tools.phpcs,tools.phpmd" description="Run code examination tools" /> | |
<target name="tools.phplint" description="Check code with PHP Lint option"> | |
<apply executable="php" failonerror="true"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# The follwing commands will wipe out any and all traces, except the | |
# installed application, of PHPStorm support files. Only use these if | |
# you need to reset back to a fresh install. | |
rm -rf ~/Library/Application\ Support/WebIde70 | |
rm -rf ~/Library/Cache/WebIde70 | |
rm -rf ~/Library/Preferences/WebIde70 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
default: | |
autoload: | |
'': %paths.base%/tests/features/bootstrap | |
extensions: | |
Behat\MinkExtension: | |
base_url: http://<project>.app | |
goutte: ~ | |
selenium2: ~ | |
suites: | |
auth_suite: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure(2) do |config| | |
config.vm.box = "ubuntu/trusty64" | |
config.vm.hostname = "pwap" | |
config.vm.network "private_network", ip: "192.168.10.10" | |
config.vm.provider :virtualbox do |vb| | |
vb.customize ["modifyvm", :id, "--memory", "1024"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
app: | |
image: learninghouse/nginx-phpfpm:7.1 | |
volumes: | |
- ./:/app | |
ports: | |
- "8000:80" | |
links: |
OlderNewer