Initial implementation: package-updater v1 #1

Merged
shcizo merged 27 commits from feat/initial-implementation into main 2026-05-22 11:59:39 +00:00
4 changed files with 39 additions and 0 deletions
Showing only changes of commit 1ca9f5296a - Show all commits
+22
View File
@@ -0,0 +1,22 @@
# Binaries
/bin/
*.exe
*.dll
*.so
*.dylib
# Test binary, output of `go test -c`
*.test
# Coverage
*.out
coverage.html
# IDE
.idea/
.vscode/
*.swp
# Local env files
.env
.env.local
+7
View File
@@ -0,0 +1,7 @@
# package-updater
Webhook-driven Docker Compose service updater. See [design spec](docs/superpowers/specs/2026-05-22-package-updater-design.md) for full design.
## Quick start
(TBD — filled in by final task)
+7
View File
@@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("package-updater (scaffold)")
}
+3
View File
@@ -0,0 +1,3 @@
module github.com/shcizo/package-updater
go 1.26.3