Skip to content

Instantly share code, notes, and snippets.

@studiocaro
studiocaro / [WordPress] Automated setup with Bedrock, Sage and Valet
Last active September 24, 2024 21:48
My workflow contains Bedrock, Sage and Valet from Laravel. The latter is something you'll have to install first, otherwise this script won't work!
#!/bin/sh
echo "🎉 👏 Congrats with the new project! 🎉 👏
I'm setting up your fresh WordPress install for you."
# Make new folder
printf "Enter folder name of your choice -> "
read FOLDER
mkdir $FOLDER
cd $FOLDER