Initial commit

This commit is contained in:
Senad Uka
2020-07-05 16:49:14 +02:00
commit a9222a93fc
11 changed files with 470 additions and 0 deletions

16
bin/install-wp.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env sh
# Install WordPress.
wp core install \
--title="Project" \
--admin_user="wordpress" \
--admin_password="wordpress" \
--admin_email="admin@example.com" \
--url="http://project.test" \
--skip-email
# Update permalink structure.
wp option update permalink_structure "/%year%/%monthnum%/%postname%/" --skip-themes --skip-plugins
# Activate plugin.
wp plugin activate my-plugin