Created
April 8, 2020 07:50
-
-
Save tekapo/4c8ca898739eb0fd89395a790035915e to your computer and use it in GitHub Desktop.
set up WordPress on Shifter-Local
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo -u www-data wp core install \ | |
--path=/var/www/html/web/wp \ | |
--url=example.com \ | |
--title=Example \ | |
--admin_user=supervisor \ | |
--admin_password=strongpassword \ | |
[email protected] \ | |
&& \ | |
sudo -u www-data wp plugin install \ | |
--path=/var/www/html/web/wp \ | |
debug-bar \ | |
show-current-template \ | |
wordpress-importer \ | |
--activate \ | |
&& \ | |
sudo -u www-data wp language core install ja \ | |
--path=/var/www/html/web/wp \ | |
&& \ | |
sudo -u www-data wp language core activate ja \ | |
--path=/var/www/html/web/wp \ | |
&& \ | |
wget https://raw.githubusercontent.com/jawordpressorg/theme-test-data-ja/master/wordpress-theme-test-data-ja.xml \ | |
&& \ | |
sudo -u www-data wp import wordpress-theme-test-data-ja.xml \ | |
--path=/var/www/html/web/wp \ | |
--authors=create \ | |
&& \ | |
rm wordpress-theme-test-data-ja.xml \ | |
&& \ | |
sudo -u www-data wp scaffold _s sample-theme \ | |
--path=/var/www/html/web/wp \ | |
--theme_name="Sample Theme" \ | |
--author="John Doe" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment