Make WordPress Core

Ticket #49273: 49273.1.patch

File 49273.1.patch, 1.4 KB (added by bookdude13, 7 years ago)

Updated README.md

  • README.md

     
    2121
    2222Additionally, `npm run env:stop` will stop the environment.
    2323
     24The site can be found at http://localhost:8889.
     25
    2426`npm run env:cli` runs the [WP-CLI tool](https://make.wordpress.org/cli/handbook/). WP-CLI has a lot of [useful commands](https://developer.wordpress.org/cli/commands/) you can use to work on your WordPress site. Where the documentation mentions running `wp`, run `npm run env:cli` instead. For example, `npm run env:cli help`.
    2527
    2628`npm run test:php` and `npm run test:e2e` run the PHP and E2E test suites, respectively.
     29
     30### Credentials
     31
     32This is the default database information:
     33
     34```
     35Database Name: wordpress_develop
     36Username: root
     37Password: password
     38```
     39
     40To login to the site, navigate to http://localhost:8889/wp-admin.
     41
     42```
     43Username: admin
     44Password: password
     45```
     46
     47To generate a new password (recommended):
     48
     491. Go to the Dashboard (click the name of the site in the upper left after logging in)
     502. Click 'Users' on the left
     513. Hover over the 'admin' user, then click 'edit'
     524. Scroll down and click 'Generate password'. Either use this password (recommended) or change it, then click 'Update User'. If you use the generated password be sure to save it somewhere (password manager, etc).