mccomaschris/thundr-cli

Thundr CLI for managing Laravel and Statamic sites.

v1.0.2 2025-04-02 18:40 UTC

This package is auto-updated.

Last update: 2025-04-02 18:45:34 UTC


README

Thundr is a PHP CLI tool for managing Laravel and Statamic sites on your servers—without SSHing in manually. It helps you provision, deploy, configure, and maintain sites using a simple thundr.yml file.

Features

  • 🔧 Site provisioning with PHP, Nginx, and MySQL
  • 🔐 SSL via Let's Encrypt or Cloudflare Origin Certificates
  • ⚙️ Cron/scheduler management
  • 📦 Zero-downtime deployments
  • 🛠 Remote .env, logs, and Artisan command execution
  • 📂 Multiple server support with centralized config
  • 🧼 Rollback and release pruning

Requirements

  • PHP 8.1+
  • Laravel or Statamic project
  • thundr.yml file in your project root
  • Remote server with SSH access and a thundr user

Installation

composer global require mccomaschris/thundr-cli

Make sure Composer's global vendor/bin directory is in your $PATH.

Quick Start

  1. Initialize global config:
thundr config:init
  1. Set up your project:
thundr site:init
  1. Provision the site on the server:
thundr site:create
  1. Deploy it:
thundr site:deploy

Example thundr.yml

root_domain: example.com
repo: user/repo.git
branch: main
php_version: '8.3'
project_type: laravel
server: my-production-server
operating_system: ubuntu

Full Command Reference

We’ve documented each command with descriptions, usage examples, and notes:

View Full CLI Documentation

Contributing

Pull requests and suggestions are welcome! Please open an issue or submit a PR.

License

MIT