git clone git@github.com:two-inc/woocommerce-plugin.git
cd woocommerce-plugin
docker-compose up
npx cypress run --browser chrome --config baseUrl=http://localhost
Ensure that you have bumpver
installed.
$ pip install bumpver
To bump version:
$ bumpver update --major | --minor | --patch
Now, go to Github to create a new release which triggers publication of the new version to Wordpress plugin directory.
For Mac users, follow this guide: https://skillcrush.com/blog/install-wordpress-mac/
Once wordpress has been set up, a recommended plugin theme to install is:
- Elementor, select an ecommerce template WooCommerce then needs to be installed as a plugin Other recommended WooCommerce plugins are:
- WooCommerce Cart Abdandonment Recovery
- WooCommerce Shipping & Tax
To install the two plugin, it can be found in the wp portal for plugins 'Two - BNPL for businesses', or you can manually add the files:
- create a zip file of this repo, which contains only the required folders and file types:
zip -r tillit-payment-gateway.zip 'assets' 'class' 'views' 'readme.txt' *.php *.pot *.mo *.po
- Unzip the folder into
Sites/wp-content/plugins
In the wordpress portal, update the WooCommerce plugin settings to suit, and add api credentials.
To enable logging, update Sites/wp-config(.php?)
with:
@ini_set( 'display_errors', 1 );
define('WP_DEBUG_LOG', true);
define( 'WP_DEBUG', true );
If you are developing on a Mac with M1 chip, you may want the following:
echo REPO=docker.io/arm64v8/ >> .env
Also, if you wish to use Checkout API backend running on a Kubernetes cluster deployed using [Skaffold][https://github.com/tillit-dot-ai/local-deploy-skaffold], you may need to create this entry:
echo WOOCOM_PLUGIN_CONFIG_JSON=config-local.json >> .env
Now you can bring up your Wordpress instance:
docker-compose up -d
Navigate to http://localhost:5000/ on your brower to access the Wordpress site.
- webhooks (merchant dashboard -> woocommerce)
- orders are stored in
wp_posts
andwp_postmeta
(also some stuff inwp_woocommerce_order_*
(update_post_*
function in PHP)