17 lines
406 B
Bash
Executable File
17 lines
406 B
Bash
Executable File
#!/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
|