I use Valet as my local web development environment (PHP, Laravel, Wordpress, ...)
This gist is my own recipe to install Wordpress from the command line to use it with Valet. Maybe this is useful for you too.
https://cdn.rawgit.com/mfd/f3d96ec7f0e8f034cc22ea73b3797b59/raw/856f1dbb8d807aabceb80b6d4f94b464df461b3e/gotham.css
<link rel="https://cdn.rawgit.com/mfd/f3d96ec7f0e8f034cc22ea73b3797b59/raw/856f1dbb8d807aabceb80b6d4f94b464df461b3e/gotham.css">
#!/bin/zsh | |
# Define the image types to search for | |
extensions=("*.jpeg" "*.jpg" "*.tiff" "*.tif" "*.png" "*.ico") | |
# Iterate over each image type | |
for type in "${extensions[@]}"; do | |
# Find files of the specified image type | |
find . -type f -iname "$type" | while read -r IMAGE; do | |
# Get the filename without extension |