tiny 88x31 lexicon for atproto
0
fork

Configure Feed

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

add godotenv

+5
+2
cmd/main.go
··· 5 5 "log" 6 6 "net/http" 7 7 8 + "github.com/joho/godotenv" 8 9 "tangled.org/moth11.net/88x31/db" 9 10 "tangled.org/moth11.net/88x31/handler" 10 11 "tangled.org/moth11.net/88x31/oauth" ··· 12 13 13 14 func main() { 14 15 fmt.Println("running 88x31!") 16 + godotenv.Load() 15 17 store, err := db.Init() 16 18 if err != nil { 17 19 log.Fatal(err)
+1
go.mod
··· 7 7 github.com/gorilla/sessions v1.4.0 8 8 github.com/ipfs/go-cid v0.4.1 9 9 github.com/jackc/pgx/v5 v5.7.6 10 + github.com/joho/godotenv v1.5.1 10 11 github.com/whyrusleeping/cbor-gen v0.2.1-0.20241030202151-b7a6831be65e 11 12 golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 12 13 )
+2
go.sum
··· 34 34 github.com/jackc/pgx/v5 v5.7.6/go.mod h1:aruU7o91Tc2q2cFp5h4uP3f6ztExVpyVv88Xl/8Vl8M= 35 35 github.com/jackc/puddle/v2 v2.2.2 h1:PR8nw+E/1w0GLuRFSmiioY6UooMp6KJv0/61nB7icHo= 36 36 github.com/jackc/puddle/v2 v2.2.2/go.mod h1:vriiEXHvEE654aYKXXjOvZM39qJ0q+azkZFrfEOc3H4= 37 + github.com/joho/godotenv v1.5.1 h1:7eLL/+HRGLY0ldzfGMeQkb7vMd0as4CfYvUVzLqw0N0= 38 + github.com/joho/godotenv v1.5.1/go.mod h1:f4LDr5Voq0i2e/R5DDNOoa2zzDfwtkZa6DnEwAbqwq4= 37 39 github.com/klauspost/cpuid/v2 v2.2.7 h1:ZWSB3igEs+d0qvnxR/ZBzXVmxkgt8DdzP6m9pfuVLDM= 38 40 github.com/klauspost/cpuid/v2 v2.2.7/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws= 39 41 github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 h1:jWpvCLoY8Z/e3VKvlsiIGKtc+UG6U5vzxaoagmhXfyg=