chore: initial wp-boilerplate project

This commit is contained in:
2026-04-27 10:33:56 -04:00
commit bbb5f2a459
14 changed files with 1190 additions and 0 deletions

75
scripts/common.sh Executable file
View File

@@ -0,0 +1,75 @@
#!/usr/bin/env bash
set -e
_DIR_=`dirname "$(readlink -f "$0")"`
_FILE_=`basename $0`
_LOG_=${SHELL_LOG:-/dev/null}
_NOW_=`date +"%Y-%m-%d@%H:%M"`
# Helpers
function CONFIRM {
read -r -p "${1:-Are you sure?} [y/N] " response
case "$response" in
[yY][eE][sS]|[yY])
true
;;
*)
false
;;
esac
}
function INFO {
echo -e "\e[1;32m[${_FILE_}]\e[0m ${1}"
}
function WARNING {
echo -e "\e[1;33m[${_FILE_}]\e[0m ${1}"
CONFIRM && return
exit 1
}
function ERROR {
echo -e "\e[1;31m[${_FILE_}]\e[0m ${1}"
exit 1
}
function TIME_START {
t1=`date +%s.%N`
}
function TIME_STOP {
t2=`date +%s.%N`
dt=`echo "$t2 - $t1" | bc -l`
dt=`echo "scale=2; $dt / 1" | bc -l`
echo "Done in ${dt}s"
}
# Default configuration
if [ -f "${_DIR_}/.lwsrc" ]; then
source ${_DIR_}/.lwsrc
else
ERROR "Config not found! Please create ${_DIR_}/.lwsrc"
fi
# Check configuration
if [ -z "${REMOTE_DOMAIN}" ]; then
ERROR "Please configure REMOTE_DOMAIN in ${_DIR_}/.lwsrc"
fi
if [ -z "$REMOTE_HOST" ] || [ -z "$REMOTE_USER" ] || [ -z "$REMOTE_PATH" ]; then
ERROR "Please configure REMOVE_HOST / REMOVE_USER / REMOTE_PATH in ${_DIR_}/.lwsrc"
fi
# Change to project root directory
cd ${_DIR_}/..
# Determine local domain
if [ -z "${LOCAL_DOMAIN}" ]; then
LOCAL_DOMAIN=${REMOTE_DOMAIN#www.}
LOCAL_DOMAIN="${LOCAL_DOMAIN%%.*}.${TLD-ledevsimple.ca}"
fi
if [ -z "${LOCAL_DOMAIN}" ]; then
ERROR "Could not determine local domain. Please verify ${_DIR_}/.lwsrc"
fi
# Determine local protocol
LOCAL_PROTOCOL="${LOCAL_PROTOCOL-https}"