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. --- templates/app.caddy.tmpl | 3 --- templates/service.tmpl | 17 ----------------- templates/static.caddy.tmpl | 5 ----- 3 files changed, 25 deletions(-) delete mode 100644 templates/app.caddy.tmpl delete mode 100644 templates/service.tmpl delete mode 100644 templates/static.caddy.tmpl (limited to 'templates') diff --git a/templates/app.caddy.tmpl b/templates/app.caddy.tmpl deleted file mode 100644 index 505d1d9..0000000 --- a/templates/app.caddy.tmpl +++ /dev/null @@ -1,3 +0,0 @@ -{{.Domain}} { - reverse_proxy 127.0.0.1:{{.Port}} -} diff --git a/templates/service.tmpl b/templates/service.tmpl deleted file mode 100644 index 87389f0..0000000 --- a/templates/service.tmpl +++ /dev/null @@ -1,17 +0,0 @@ -[Unit] -Description={{.Name}} -After=network.target - -[Service] -Type=simple -User={{.User}} -WorkingDirectory={{.WorkDir}} -EnvironmentFile={{.EnvFile}} -ExecStart={{.BinaryPath}} --port={{.Port}} -Restart=always -RestartSec=5s -NoNewPrivileges=true -PrivateTmp=true - -[Install] -WantedBy=multi-user.target diff --git a/templates/static.caddy.tmpl b/templates/static.caddy.tmpl deleted file mode 100644 index d04f6b0..0000000 --- a/templates/static.caddy.tmpl +++ /dev/null @@ -1,5 +0,0 @@ -{{.Domain}} { - root * {{.RootDir}} - file_server - encode gzip -} -- cgit v1.2.3