woocommerce-paypal-payments/.ddev/commands/web/orchestrate.d/10_wp_install.sh

16 lines
323 B
Bash
Raw Normal View History

2022-05-05 15:50:21 +03:00
#!/bin/bash
if [ ! -z "${RECREATE_ENV}" ]; then
echo "Deleting database before creating a new one"
wp db clean --yes
fi
wp core install \
--title="${WP_TITLE}" \
--admin_user="${ADMIN_USER}" \
--admin_password="${ADMIN_PASS}" \
--url="${DDEV_PRIMARY_URL}" \
--admin_email="${ADMIN_EMAIL}" \
--skip-email