govard-toolbox

Solid

High-level shortcuts and references for Govard development environment orchestrator. Use when: - "Start/stop environment", "govard up", "govard down" - "Run commands in container", "govard sh" - "Database operations", "db dump", "db import" - "Sync with remote", "bootstrap from staging" - "Debug configuration", "Xdebug setup" This is the BASE skill - for framework-specific shortcuts, also load govard-magento or govard-laravel.

AI & Automation 2 stars 2 forks Updated 3 days ago MIT

Install

View on GitHub

Quality Score: 78/100

Stars 20%
16
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Govard Toolbox Govard is a containerized development environment orchestrator. This skill provides high-level shortcuts and references. ## Quick Reference ### Environment Lifecycle | Shortcut | Full Command | Purpose | |----------|--------------|---------| | `govard up` | `govard env up` | Start project | | `govard down` | `govard env down` | Stop project | | `govard sh` | `govard shell` | Interactive shell | | `govard ps` | `govard env ps` | List containers | ### Common Commands ```bash # Start environment govard up # Stop environment govard down # Stop with volumes (clean slate) govard down -v # Shell into PHP container govard sh # Run single command govard sh -c "ls -la" # View logs govard logs -f # Restart services govard restart ``` ### Database Operations ```bash # Connect to MySQL govard db connect # Run query govard db query "SELECT * FROM admin_user LIMIT 1" # Import dump govard db import --file backup.sql --drop # Export database govard db dump --no-noise -e staging # Direct sync from remote govard db import --stream-db -e staging --drop ``` ### Remote Sync ```bash # Add remote govard remote add staging ssh://user@staging.server/path # Test connection govard remote test staging # Sync everything govard sync --source staging --full # Plan before sync (preview) govard sync --source staging --full --plan # Skip noise (cache, logs) govard sync --source staging --full --no-noise --no-pii ``` ### Bootstrap ```bash # From staging (full setup) go...

Details

Author
ddtcorex
Repository
ddtcorex/dev-skills-hub
Created
2 months ago
Last Updated
3 days ago
Language
Shell
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category