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
25 lines
753 B
PHP
25 lines
753 B
PHP
<?php
|
|
/**
|
|
* Plugin Name: Spectra Pro
|
|
* Plugin URI: https://wpspectra.com/
|
|
* Author: Brainstorm Force
|
|
* Author URI: https://www.brainstormforce.com
|
|
* Description: Enhance Spectra with new features and blocks, as well as extended functionality for existing blocks.
|
|
* Version: 1.2.0
|
|
* License: GPL v2
|
|
* Text Domain: spectra-pro
|
|
*
|
|
* @package spectra-pro
|
|
*/
|
|
|
|
/**
|
|
* Set constants.
|
|
*/
|
|
define( 'SPECTRA_PRO_FILE', __FILE__ );
|
|
define( 'SPECTRA_PRO_BASE', plugin_basename( SPECTRA_PRO_FILE ) );
|
|
define( 'SPECTRA_PRO_DIR', plugin_dir_path( SPECTRA_PRO_FILE ) );
|
|
define( 'SPECTRA_PRO_URL', plugins_url( '/', SPECTRA_PRO_FILE ) );
|
|
define( 'SPECTRA_PRO_VER', '1.2.0' );
|
|
define( 'SPECTRA_CORE_REQUIRED_VER', '2.18.2' );
|
|
|
|
require_once 'plugin-loader.php';
|