Skip to content

Instantly share code, notes, and snippets.

View iolson's full-sized avatar

Ian Olson iolson

  • Grubhub
  • Chicago, IL
View GitHub Profile
web: vendor/bin/heroku-php-nginx -C nginx.conf public/
queue: php artisan queue:work --sleep=3 --tries=3 --daemon
@iolson
iolson / SETUP.md
Created November 1, 2016 16:45
New Macbook Setup

Install Homebrew

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew update

Cask Install Applications

brew cask install iterm2
brew cask install git
[[runners]]
url = "https://domain.com/ci"
token = "RUNNER TOKEN GOES HERE"
tls-skip-verify = false
tls-ca-file = ""
name = "YOUR RUNNER NAME"
executor = "docker"
environment = ["MYSQL_ALLOW_EMPTY_PASSWORD=1"]
[runners.docker]
image = "php:7-fpm"
# Before Tests
before_script:
- bash ci/docker_setup.sh > /dev/null
- composer self-update
- composer install --prefer-dist > /dev/null
- cp .env.gitlab .env
- php artisan key:generate
# Services
services:
#!/bin/bash
# We need to install dependencies only for Docker
[[ ! -e /.dockerinit ]] && exit 0
set -xe
# Update
apt-get update -yqq
@iolson
iolson / Blockchain
Last active January 8, 2016 15:16
Verifying that +ianolson is my blockchain ID. https://onename.com/ianolson
Verifying that +ianolson is my blockchain ID. https://onename.com/ianolson
# For Debian/Ubuntu
apt-get install gitlab-ci-multi-runner
# For CentOS
yum install gitlab-ci-multi-runner
# For Debian/Ubuntu
curl -L https://packages.gitlab.com/install/repositories/runner/gitlab-ci-multi-runner/script.deb.sh | sudo bash
# For CentOS
curl -L https://packages.gitlab.com/install/repositories/runner/gitlab-ci-multi-runner/script.rpm.sh | sudo bash
# Using cURL
curl -sSL https://get.docker.com/ | sh
# Using Ubuntu
sudo apt-get install docker.io
@iolson
iolson / .gitlab-ci.yml
Last active April 29, 2017 18:06
GitLab CI
# Before Tests
before_script:
- bash ci/docker_install.sh > /dev/null
- composer self-update
- composer install --prefer-dist > /dev/null
- cp .env.gitlab .env
- php artisan key:generate
- php artisan migrate:refresh
# Services