This commit introduces a more reliable and consistent approach to setting up the development environment using backups: - Add setup-from-backup.sh script for environment setup from existing backups - Standardize script naming and organization - Move obsolete scripts to bin/obsolete directory - Update documentation with new workflow instructions - Create migration guide for transitioning to new workflow - Update Memory Bank with workflow improvements The new workflow provides: - More reliable environment setup - Faster setup process - Offline development capability - Consistent development environments across team members Breaking changes: - setup-dev.sh is replaced by setup-from-backup.sh - sync-and-setup.sh is replaced by separate scripts - verify-with-wpcli.sh is no longer used Migration path is documented in MIGRATION_GUIDE.md
14 lines
383 B
PHP
14 lines
383 B
PHP
<?php
|
|
|
|
// Exit if accessed directly.
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
acf_include( 'includes/rest-api/acf-rest-api-functions.php' );
|
|
acf_include( 'includes/rest-api/class-acf-rest-api.php' );
|
|
acf_include( 'includes/rest-api/class-acf-rest-embed-links.php' );
|
|
acf_include( 'includes/rest-api/class-acf-rest-request.php' );
|
|
|
|
// Initialize.
|
|
acf_new_instance( 'ACF_Rest_Api' );
|