exilon-studios/mccms-cli

Command-line interface for creating and managing MC-CMS projects (BETA)

Installs: 10

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/exilon-studios/mccms-cli

0.1.9 2025-12-29 06:34 UTC

This package is auto-updated.

Last update: 2025-12-29 06:35:03 UTC


README

Command-line interface for creating and managing MC-CMS projects.

Installation

Install globally via Composer:

composer global require exilon-studios/mccms-cli

Make sure your global Composer bin directory is in your PATH.

Usage

Create a new MC-CMS project

mccms new my-project

This will:

  1. Download the latest MC-CMS release
  2. Install dependencies
  3. Prompt you to select a theme (or use default)
  4. Prompt you to select plugins to install
  5. Set up your project directory

Options

# Specify a theme
mccms new my-project --theme=my-theme

# Specify plugins
mccms new my-project --plugins=plugin1 --plugins=plugin2

# Skip dependency installation
mccms new my-project --no-install

# Force installation in existing directory
mccms new my-project --force

After Installation

  1. Navigate to your project:

    cd my-project
  2. Configure your .env file:

    cp .env.example .env
  3. Generate application key:

    php artisan key:generate
  4. Run migrations:

    php artisan migrate
  5. Visit your site and complete the installation wizard.

Requirements

  • PHP 8.2 or higher
  • Composer
  • Git (optional)

License

GPL-3.0-or-later