A container registry that uses the AT Protocol for manifest storage and S3 for blob storage. atcr.io
docker container atproto go
at v0.0.12 645 B view raw
1root = "." 2tmp_dir = "tmp" 3 4[build] 5# Pre-build: generate assets if missing (each string is a shell command) 6pre_cmd = ["[ -f pkg/appview/static/js/htmx.min.js ] || go generate ./..."] 7cmd = "go build -buildvcs=false -o ./tmp/atcr-appview ./cmd/appview" 8entrypoint = ["./tmp/atcr-appview", "serve"] 9include_ext = ["go", "html", "css", "js"] 10exclude_dir = ["bin", "tmp", "vendor", "deploy", "docs", ".git", "dist"] 11exclude_regex = ["_test\\.go$"] 12delay = 1000 13stop_on_error = true 14send_interrupt = true 15kill_delay = 500 16 17[log] 18time = false 19 20[color] 21main = "cyan" 22watcher = "magenta" 23build = "yellow" 24runner = "green" 25 26[misc] 27clean_on_exit = true