A container registry that uses the AT Protocol for manifest storage and S3 for blob storage. atcr.io
docker container atproto go
72
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 13 lines 302 B view raw
1package main 2 3import ( 4 "path/filepath" 5 "runtime" 6) 7 8// projectRoot returns the absolute path to the repository root, 9// derived from the compile-time source file location. 10func projectRoot() string { 11 _, thisFile, _, _ := runtime.Caller(0) 12 return filepath.Join(filepath.Dir(thisFile), "..", "..") 13}