Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/woocommerce/wc-smooth-generator
Smooth product, customer and order generation for WooCommerce
https://github.com/woocommerce/wc-smooth-generator
woocommerce wp-cli
Last synced: about 1 month ago
JSON representation
Smooth product, customer and order generation for WooCommerce
- Host: GitHub
- URL: https://github.com/woocommerce/wc-smooth-generator
- Owner: woocommerce
- Created: 2018-05-17T09:40:06.000Z (over 6 years ago)
- Default Branch: trunk
- Last Pushed: 2024-08-27T00:20:01.000Z (4 months ago)
- Last Synced: 2024-09-27T07:05:46.946Z (3 months ago)
- Topics: woocommerce, wp-cli
- Language: PHP
- Size: 444 KB
- Stars: 310
- Watchers: 100
- Forks: 49
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.txt
- Contributing: .github/CONTRIBUTING.md
Awesome Lists containing this project
- awesome-woocommerce - WooCommerce Smooth Generator - A smooth customer, order and product generator for WooCommerce. (Handy Code Snippets and Plugins)
README
# WooCommerce Smooth Generator
A super-smooth generator for products, orders, coupons, customers, and terms. WP-CLI is the preferred interface for using the plugin. There is also a WP Admin UI at Dashboard > Tools > WooCommerce Smooth Generator with (for now) more limited functionality.## Installation
1. Download the latest release as a zip file from https://github.com/woocommerce/wc-smooth-generator/releases/
1. Install in your WordPress site as you would any other plugin zip file.## WP-CLI Commands
You can see a summary of all available commands by running `wp help wc generate`, and more detailed guidance for each individual command is available by running `wp help wc generate `.
### Products
Generate products based on the number of products parameter.
- `wp wc generate products `Generate products of the specified type. `simple` or `variable`.
- `wp wc generate products --type=simple`### Orders
Generate orders from existing products based on the number of orders parameter, customers will also be generated to mimic guest checkout.
Generate orders for the current date
- `wp wc generate orders `Generate orders with random dates between `--date-start` and the current date.
- `wp wc generate orders --date-start=2018-04-01`Generate orders with random dates between `--date-start` and `--date-end`.
- `wp wc generate orders --date-start=2018-04-01 --date-end=2018-04-24`Generate orders with a specific status.
- `wp wc generate orders --status=completed`#### Order Attribution
Order Attribution represents the origin of data for an order. By default, random values are generated and assigned to the order. Orders with a creation date before 2024-01-09 will not have attribution metadata added, as the feature was not available in WooCommerce at that time.
Skip order attribution meta data genereation.
- `wp wc generate orders --skip-order-attribution`### Coupons
Generate coupons based on the number of coupons parameter.
- `wp wc generate coupons `Generate coupons with a minimum discount amount.
- `wp wc generate coupons --min=5`Generate coupons with a maximum discount amount.
- `wp wc generate coupons --max=50`### Customers
Generate customers based on the number of customers parameter.
- `wp wc generate customers `### Terms
Generate terms in the Product Categories taxonomy based on the number of terms parameter.
- `wp wc generate terms product_cat `Generate hierarchical product categories with a maximum number of sub-levels.
- `wp wc generate terms product_cat --max-depth=5`Generate product categories that are all child terms of an existing product category term.
- `wp wc generate terms product_cat --parent=123`Generate terms in the Product Tags taxonomy based on the number of terms parameter.
- `wp wc generate terms product_tag `## Development
Requirements
* Node.js v16
* Composer v2+1. If you use [Node Version Manager](https://github.com/nvm-sh/nvm) (nvm) you can run `nvm use` to ensure your current Node version is compatible.
1. Run `npm run setup` to get started. This will install a pre-commit Git hook that will lint changes to PHP files before they are committed. It uses the same phpcs ruleset that's used by WooCommerce Core.### Releasing a new version
1. Create a new branch with a name like `release-x.x.x`.
1. Add a new entry to the **changelog.txt** file with all the changes since the last release. Follow the conventions of previous changelog entries.
1. If necessary, update the `Tested up to` and `WC tested up to` values in the plugin header in **wc-smooth-generator.php**.
1. Update the plugin version with the new value in the **wc-smooth-generator.php** and **package.json** files.
1. Run `npm run build` to generate a production-ready zip file.
1. Test the zip file by installing it in a WordPress instance and ensuring it has the expected version number and changes.
1. Commit the changes to your release branch, and push to the repository. Create a pull request from the release branch.
1. Merge the pull request.
1. In GitHub, go to the Releases screen and click "Draft a new release".
1. Set the release title as "Version x.x.x" (but with the actual version number). In the release description, add a brief summary of highlights, and then paste the new changelog entry below that. From the "Choose a tag" dropdown, type the new version number and then click "Create a new tag". Ensure the target is trunk.
1. Upload the new zip file to the release where it says "Attach binaries".
1. Publish the release!After finishing the release, you may want to run `npm run setup` again, because the `build` script removes dev dependencies.