BuddyPress DEVELOPMENT repo. This repository is just a mirror of the development SVN at https://buddypress.svn.wordpress.org/. Please include a link to a pre-existing ticket on https://buddypress.trac.wordpress.org/ with every pull request. https://buddypress.org
Find a file
Mathieu Viet 6e88787ebf Create 10.1.0 form 10.0 branch
git-svn-id: https://buddypress.svn.wordpress.org/tags/10.1.0@13246 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
2022-02-22 20:29:13 +00:00
.github/workflows Use version 5.4 of wp-phpunit to test WordPress version 5.4 2021-11-07 18:18:47 +00:00
src 10.1.0 version bumps (branch 10.0) 2022-02-22 20:25:38 +00:00
tests/phpunit Clear the notifications user cache when bulk updating/deleting items 2022-02-22 19:23:34 +00:00
.editorconfig Build: instruct file editors to use tabs for indentation for .jshintrc and *.js files. 2018-04-04 09:38:42 +00:00
.gitignore Build/Test Tools: include @wordpress/env into BuddyPress 2020-08-30 17:53:06 +00:00
.jshintignore Use an XHR request to dismiss the BP Add-ons screen welcome panel 2021-12-10 01:29:52 +00:00
.jshintrc Build: Use tabs for indentaion, follow up to [11946] 2018-04-04 09:53:03 +00:00
.npmrc Add PHP linting to travis:phpunit and commit Grunt tasks. 2018-07-24 01:51:07 +00:00
.stylelintrc Build tools: update node modules to latest versions 2021-09-24 01:18:04 +00:00
.wp-env.json Build/Test Tools: include @wordpress/env into BuddyPress 2020-08-30 17:53:06 +00:00
bp-loader.php 10.1.0 version bumps (branch 10.0) 2022-02-22 20:25:38 +00:00
composer.json Revert changes to composer.json & composer.lock files 2021-11-07 18:36:04 +00:00
composer.lock Revert changes to composer.json & composer.lock files 2021-11-07 18:36:04 +00:00
Gruntfile.js Build tools: update the Grunt task to use v0.6 of the BP REST plugin 2022-01-30 13:49:46 +00:00
npm-shrinkwrap.json 10.1.0 version bumps (branch 10.0) 2022-02-22 20:25:38 +00:00
package.json 10.1.0 version bumps (branch 10.0) 2022-02-22 20:25:38 +00:00
phpunit.xml.dist Tests: Fix missing 'name' attribute warning for PHPUnit 7. 2020-06-16 04:34:24 +00:00
README.md Remove Travis & raise min. WP version in Unit tests GH action 2021-07-12 17:50:11 +00:00
SECURITY.md Add README.md and SECURITY.md files to the project 2020-10-09 05:13:56 +00:00

BuddyPress

Unit Tests

Welcome to the BuddyPress development repository! This repository is a mirror of our development SVN repository. Please do not send pull requests here, instead submit patches to our SVN repository. Check out the Participate & contribute page of our Codex for information about how to open bug reports, contribute patches, test changes, write documentation, or get involved in any way you can.

Getting Started

BuddyPress is a WordPress plugin to power you community site. It is a PHP, MySQL, and JavaScript based project, and uses Node for its JavaScript dependencies. A local development environment is available to quickly get up and running.

You will need a basic understanding of how to use the command line on your computer. This will allow you to set up the local development environment, to start it and stop it when necessary, and to run the tests.

You will need Node and npm installed on your computer. Node is a JavaScript runtime used for developer tooling, and npm is the package manager included with Node. If you have a package manager installed for your operating system, setup can be as straightforward as:

  • macOS: brew install node
  • Windows: choco install node
  • Ubuntu: apt install nodejs npm

If you are not using a package manager, see the Node.js download page for installers and binaries.

You will also need Docker installed and running on your computer. Docker is the virtualization software that powers the local development environment. Docker can be installed just like any other regular application.

Development Environment Commands

Ensure Docker is running before using these commands.

To start the development environment for the first time

npm install
npm run wp-env start

Your WordPress community site will be accessible at http://localhost:8888. You can see configurations in the .wp-env.json file located at the root of the project directory. You can override these configurations using a .wp-env.override.json file located at the root of the project repository.

To stop the development environment

You can stop the environment when you're not using it to preserve your computer's power and resources:

npm run wp-env stop

To start the development environment again

Starting the environment again is a single command:

npm run wp-env start

Credentials

To login to the site, navigate to http://localhost:8888/wp-admin.

  • Username: admin
  • Password: password

To generate a new password (recommended):

  1. Go to the Dashboard
  2. Click the Users menu on the left
  3. Click the Edit link below the admin user
  4. 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).