Stitch any CI into Tangled
151
fork

Configure Feed

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

fix build for banner

+7 -2
+7 -2
http.go
··· 91 91 // Plain-text banner. "tack" rendered in figlet's larry3d font; the 92 92 // shape mirrors the style the bluesky PDS serves at its own root, 93 93 // which feels like the right vibe for an atproto-adjacent service. 94 + // The two backticks in the larry3d output collide with Go's raw 95 + // string delimiter, so we concatenate them in as interpreted 96 + // substrings to keep the art byte-identical to figlet's output. 94 97 const banner = ` __ __ 95 98 /\ \__ /\ \ 96 99 \ \ ,_\ __ ___\ \ \/'\ 97 - \ \ \/ /'__'\ /'___\ \ , < 98 - \ \ \_/\ \L\.\_/\ \__/\ \ \\'\ 100 + \ \ \/ /'__` + "`" + `\ /'___\ \ , < 101 + \ \ \_/\ \L\.\_/\ \__/\ \ \\` + "`" + `\ 99 102 \ \__\ \__/.\_\ \____\\ \_\ \_\ 100 103 \/__/\/__/\/_/\/____/ \/_/\/_/ 101 104 102 105 103 106 This is a tack server: a tangled spindle for other CI services. 107 + 108 + Most API routes are under /xrpc/ 104 109 105 110 Code: https://github.com/mitchellh/tack 106 111 `