From 778bef5ee6941056e06326d1eaaa6956d7307a85 Mon Sep 17 00:00:00 2001 From: Clawd Date: Sat, 18 Apr 2026 14:40:17 -0700 Subject: Remove Go implementation — ship is skills-only now MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The skills/ directory fully replaces the old Go CLI. Drop all Go source, build files, planning docs, and the stale SECURITY.md (which described the old git-user push-deploy model that no longer exists). Trim .gitignore to match the new tree. --- test/example-website/about.html | 42 ----------- test/example-website/index.html | 46 ------------ test/example-website/style.css | 156 ---------------------------------------- 3 files changed, 244 deletions(-) delete mode 100644 test/example-website/about.html delete mode 100644 test/example-website/index.html delete mode 100644 test/example-website/style.css (limited to 'test') diff --git a/test/example-website/about.html b/test/example-website/about.html deleted file mode 100644 index 93cba92..0000000 --- a/test/example-website/about.html +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - About - Deploy Test - - - -
- -
- -
-
-

About This Site

-

This is a test website created to demonstrate the deploy tool's static site deployment capabilities.

- -

Features

-
    -
  • Simple HTML/CSS structure
  • -
  • Multiple pages for testing navigation
  • -
  • Responsive design
  • -
  • Clean and minimal styling
  • -
- -

Deployment Command

-
./deploy deploy --host peerfile --static --dir ./test/example-website --domain example.com
-
-
- - - - diff --git a/test/example-website/index.html b/test/example-website/index.html deleted file mode 100644 index 735ae73..0000000 --- a/test/example-website/index.html +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - Example Website - Deploy Test - - - -
- -
- -
-
-

Welcome to the Example Website

-

This is a simple static website for testing the deploy tool.

-
- -
-
-

Fast Deployment

-

Deploy your static sites in seconds with a single command.

-
-
-

HTTPS Enabled

-

Automatic SSL certificates with Caddy.

-
-
-

Simple Management

-

Easy-to-use CLI for managing your deployments.

-
-
-
- - - - diff --git a/test/example-website/style.css b/test/example-website/style.css deleted file mode 100644 index da7fd1c..0000000 --- a/test/example-website/style.css +++ /dev/null @@ -1,156 +0,0 @@ -* { - margin: 0; - padding: 0; - box-sizing: border-box; -} - -body { - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; - line-height: 1.6; - color: #333; - background: #f5f5f5; -} - -header { - background: #2c3e50; - color: white; - padding: 1rem 0; - box-shadow: 0 2px 5px rgba(0,0,0,0.1); -} - -nav { - max-width: 1200px; - margin: 0 auto; - padding: 0 2rem; - display: flex; - justify-content: space-between; - align-items: center; -} - -nav h1 { - font-size: 1.5rem; -} - -nav ul { - list-style: none; - display: flex; - gap: 2rem; -} - -nav a { - color: white; - text-decoration: none; - transition: opacity 0.3s; -} - -nav a:hover { - opacity: 0.8; -} - -main { - max-width: 1200px; - margin: 2rem auto; - padding: 0 2rem; -} - -.hero { - background: white; - padding: 3rem; - border-radius: 8px; - box-shadow: 0 2px 10px rgba(0,0,0,0.1); - text-align: center; - margin-bottom: 2rem; -} - -.hero h2 { - font-size: 2.5rem; - margin-bottom: 1rem; - color: #2c3e50; -} - -.hero p { - font-size: 1.2rem; - color: #666; -} - -.features { - display: grid; - grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); - gap: 2rem; - margin: 2rem 0; -} - -.feature { - background: white; - padding: 2rem; - border-radius: 8px; - box-shadow: 0 2px 10px rgba(0,0,0,0.1); -} - -.feature h3 { - color: #2c3e50; - margin-bottom: 0.5rem; -} - -.feature p { - color: #666; -} - -.about { - background: white; - padding: 3rem; - border-radius: 8px; - box-shadow: 0 2px 10px rgba(0,0,0,0.1); -} - -.about h2 { - color: #2c3e50; - margin-bottom: 1rem; -} - -.about h3 { - color: #34495e; - margin-top: 2rem; - margin-bottom: 0.5rem; -} - -.about ul { - margin-left: 2rem; - margin-bottom: 1rem; -} - -.about pre { - background: #f5f5f5; - padding: 1rem; - border-radius: 4px; - overflow-x: auto; - margin-top: 1rem; -} - -.about code { - font-family: 'Courier New', monospace; - font-size: 0.9rem; -} - -footer { - background: #2c3e50; - color: white; - text-align: center; - padding: 2rem; - margin-top: 4rem; -} - -@media (max-width: 768px) { - nav { - flex-direction: column; - gap: 1rem; - } - - .hero h2 { - font-size: 2rem; - } - - .features { - grid-template-columns: 1fr; - } -} -- cgit v1.2.3