🚤 CaptainCore Manager a WordPress plugin as an interface for CaptainCore. https://captaincore.io
Find a file
2021-01-01 20:02:42 -05:00
admin 👌 IMPROVE: Code syntax 2019-09-30 22:52:55 -04:00
app 📦 NEW: Billing features 2021-01-01 19:57:01 -05:00
includes 📦 NEW: CaptainCore cron 2021-01-01 19:28:20 -05:00
languages Release 0.1.0 (CaptainCore is born) 2018-02-04 13:54:24 -05:00
public 📦 NEW: Billing features 2021-01-01 19:57:01 -05:00
templates 📦 NEW: Link to WordPress for admins 2021-01-01 20:02:42 -05:00
vendor 📦 NEW: Configurations 2020-05-02 06:38:18 -04:00
woocommerce/emails 👌 IMPROVE: Remove old code 2020-05-02 07:27:43 -04:00
.gitignore Release 0.1.0 (CaptainCore is born) 2018-02-04 13:54:24 -05:00
.gitmodules 👌 IMPROVE: Consolidate include files 2018-08-25 21:32:24 -04:00
captaincore.php 📦 NEW: Billing features 2021-01-01 19:57:01 -05:00
composer.json 📦 NEW: Mailgun PHP client 2020-01-29 13:22:09 -05:00
composer.lock 📦 NEW: Mailgun PHP client 2020-01-29 13:22:09 -05:00
index.php Release 0.1.0 (CaptainCore is born) 2018-02-04 13:54:24 -05:00
LICENSE.txt 👌 IMPROVE: License 2019-10-01 04:44:51 -04:00
readme.md 📦 NEW: Plugin name 2019-08-11 21:13:47 -04:00
README.txt 🚀 RELEASE: Version 0.14.0 2020-10-28 08:52:06 -04:00
uninstall.php 📖 DOC: Updated branding. 2018-08-08 21:09:36 -04:00
upload.php 👌 IMPROVE: File upload 2019-05-17 09:54:52 -04:00


CaptainCore

CaptainCore is an open source toolkit for managing WordPress sites via SSH & WP-CLI. This is a WordPress plugin that requires a connection to CaptainCore CLI.

emoji-log

Warning

This project is under active development and not yet stable. Things may break without notice. Only proceed if your wanting to spend time on the project. Sign up to receive project update at captaincore.io.

Installation

  1. Upload /captaincore/ to the /wp-content/plugins/ directory
  2. Activate the plugin through the 'Plugins' menu in WordPress
  3. CaptainCore requires access to a remote server running CaptainCore CLI. Add following auth info to wp-config.php file.
# CaptainCore CLI keys
define( 'CAPTAINCORE_CLI_TOKEN', "xxxxxxxxxxxxxxxxxxxxxxxxx" );
define( 'CAPTAINCORE_CLI_USER', "xxxxxxxx" );
define( 'CAPTAINCORE_CLI_KEY', "xxxxxxxxxxxxxxxxxxxxxxxxx" );
define( 'CAPTAINCORE_CLI_ADDRESS', "xxx.xxx.xxx.xxx" );
define( 'CAPTAINCORE_CLI_PORT', "xxxxx" );

# CaptainCore B2 keys
define( 'CAPTAINCORE_B2_ACCOUNT_ID', 'xxxxxxxxxxxx' );
define( 'CAPTAINCORE_B2_ACCOUNT_KEY', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' );
define( 'CAPTAINCORE_B2_BUCKET_ID', 'xxxxxxxxxxxxxxxxxxxxxxxx' );
define( 'CAPTAINCORE_B2_SNAPSHOTS', "Bucket/Foldername" );