Skip to content

Instantly share code, notes, and snippets.

View eriktailor's full-sized avatar

Erik Tailor eriktailor

View GitHub Profile
@bradtraversy
bradtraversy / laravel_valet_setup.md
Last active April 14, 2026 03:12
Laravel Valet install on mac

Laravel Valet Setup (Mac)

This will get you setup with Laravel & Valet on your Mac. Quentin Watt has a good video tutorial on getting setup here as well

Install Homebrew

Go to https://brew.sh/ and copy the command and run in your terminal

It will be something like this...

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- Login Into Digital Ocean
- Click On New project
- Give it a name, description and purpose
- Skip 'Move your resources' step
- Click 'Get Started with Droplet'
- Go to 'Market Place' Tab
- Select LAMP Stack Image or Docker Image accodring to your requirements
- Creating SSH KEYS
@iberniex
iberniex / Deployment_to_heroku_laravel.md
Last active September 30, 2023 01:57
DEPLOYMENT TO HEROKU LARAVEL

How to Deploy laravel Applications on Heroku.

Heroku-Laravel

Introduction

Welcome to a series of Deploying a Laravel Application.

Laravel applications are deployed on many sites.

I will be taking you through on how to deploy a laravel application which has a database and to be specific, Postgresql Database.

@mayurah
mayurah / sips: CR2 to jpeg
Created August 9, 2017 20:42
Mass convert CR2 (Raw Image File) to JPEG in macOS command-line.
# Mass convert CR2 (Raw Image File) to JPEG in macOS command-line.
mkdir Converted
for i in *.CR2; do sips -s format jpeg $i --out Converted/$i.jpg;done