initial commit

This commit is contained in:
2023-12-16 17:23:18 -06:00
commit 0df4f8540d
16 changed files with 254 additions and 0 deletions

7
chihounds/wp-install.sh Executable file
View File

@@ -0,0 +1,7 @@
cd "$(dirname "$0")"
./wp-cli.sh sh -c '
wp db create || true && \
wp core install --title="$WORDPRESS_TITLE" --url="$WORDPRESS_SITEURL" --admin_user=$WORDPRESS_ADMIN_USER --admin_email=$WORDPRESS_ADMIN_EMAIL --admin_password=$WORDPRESS_ADMIN_PASSWORD && \
wp theme install $WP_THEMES --activate; \
wp plugin install $WP_PLUGINS --activate
'