Is it possible to go through this sites without clicking but with shell commands (i mean wp-cli):
Asked
Active
Viewed 44 times
1 Answers
0
The answer to that question is yes.
# Create a config file.
wp config create --dbname="my_db" --dbuser="my_db_user" --dbpass="my_db_pass" --dbhost="127.0.0.1"
# Install WordPress.
wp core install --url="blog.localhost/blog" --title="Lorem ipsum dolor sit amet" --admin_user="admin" --admin_password="admin" --admin_email="admin@example.com" --skip-email
# Install a different language.
wp language core install de_DE

leymannx
- 5,138
- 5
- 45
- 48