1.0.2 • Published 4 years ago

create-wp-local v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

create-wp-local

create-wp-local is a Node.js CLI module based on the WPinstaller module.

This module let you install easily WordPress CMS sites on your local PHP dev environment such as XAMPP, Wamp or MAMP.

Installation

This module can be installed globally only

Install globally

$ npm install -g create-wp-local

Usage

globally

Enter to your htdocs folder

$ cd htdocs

Open your terminal and run create-wp-local command following your site name

$ create-wp-local my-wp-site

Or with npx

$ npx create-wp-local my-wp-site

Once you will run the create-wp-local command, a prompt configuration will be displayed in the terminal

Prompt config questions

InputDescriptionDefault
Site languageThe language that the site will be displayedEN
DatabaseThe name of the database you want to use with WordPress. Database name is required! - If the database does not exist in your Database Service ( MySQL or MariaDB ) it will created automatically for you according to the Database name you will supply
UserYour database username such as rootroot
User passwordYour database password, no password required for root
PortWikipedia8080
HostYou should be able to get this info from your web hostlocalhost
PrefixIf you want to run multiple WordPress installations in a single databasewp_
Site titleYour WordPress site titleSimple site title
Admin usernameThe username will be used for log in after the installationadmin
Admin passwordThe site admin password123456
Admin emailThe site admin email addressadmin@wp.com

After a successful installation you will be able to access your site at:

e.g http://localhost:8080/my-wp-site

License

MIT