Skip to content

Commit 23c4f1f

Browse files
committed
extra
1 parent a40bae5 commit 23c4f1f

File tree

2 files changed

+66
-21
lines changed

2 files changed

+66
-21
lines changed

.github/workflows/repo.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Test
22

33
on:
4-
pull_request:
4+
push:
55
branches:
66
- '*'
77

packages/pds/src/basic-routes.ts

Lines changed: 65 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,71 @@ export const createRouter = (ctx: AppContext): Router => {
77

88
router.get('/', function (req, res) {
99
res.type('text/plain')
10-
res.send(`
11-
__ __
12-
/\\ \\__ /\\ \\__
13-
__ \\ \\ ,_\\ _____ _ __ ___\\ \\ ,_\\ ___
14-
/'__'\\ \\ \\ \\/ /\\ '__'\\/\\''__\\/ __'\\ \\ \\/ / __'\\
15-
/\\ \\L\\.\\_\\ \\ \\_\\ \\ \\L\\ \\ \\ \\//\\ \\L\\ \\ \\ \\_/\\ \\L\\ \\
16-
\\ \\__/.\\_\\\\ \\__\\\\ \\ ,__/\\ \\_\\\\ \\____/\\ \\__\\ \\____/
17-
\\/__/\\/_/ \\/__/ \\ \\ \\/ \\/_/ \\/___/ \\/__/\\/___/
18-
\\ \\_\\
19-
\\/_/
20-
21-
22-
This is an AT Protocol Personal Data Server (aka, an atproto PDS)
23-
24-
Most API routes are under /xrpc/
25-
26-
Code: https://github.com/bluesky-social/atproto
27-
Self-Host: https://github.com/bluesky-social/pds
28-
Protocol: https://atproto.com
29-
`)
10+
res.send(
11+
`
12+
+----------------------------------------------------------------------------+
13+
| |
14+
| |
15+
| +*####+ :+######- |
16+
| -++++*###* ....:::::::...-*####*++++*. |
17+
| =++++++*###*::::::::::::::::-*###*+++++++*+:-= |
18+
| .-++++++++*####++++++++++++++#####+++++++++#*:-+ |
19+
| .:::::-+++++++++*####+++*++++*+++####*++++++++++##++* |
20+
| .:::::=++++++*##########++#++++#++*%%%%%######**++*%#+*# |
21+
| ..::::=+++++*######%##%%%%#++%+++**=*%%%%%%%%%%%%%%%%%%*++* |
22+
| ::::-++++++*###%%%%%%%%%%%%*+%#++##+%%%%%%%%%%%%%%%%%%%%#** |
23+
| :::-++++++*%%%%%%%%%%%%@@@@%%%%%#@%%@@@@@@@@@@@@%%%%%%%%%%@ |
24+
| ::::=+++++#%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%@ |
25+
| ::::::=++#%%%%%%%%@@%: -%@@@@@@@@@@@%= .+@@@@@@@@@@@@@@@ |
26+
| ..::::::=#%%%%%%%%@* #@@..%@@@@@@@@- :%@@@@@@@@@@@@ |
27+
| :::::::=########+ -#* .*%%%@@@@+#@@@- .@@@@@@@@@@@@ |
28+
| .::=%#########+ *########%@:%@@@# %@@@@@@%#++* |
29+
| ##########*:+%#########++..**+ .==-:::::---+ |
30+
| -%%%%%%%%%%==##%%%%%%##+:::::::::::::::::::::----+ |
31+
| .-++=: =%%%%%%%%%% =%%%%%%%%%%-:::..:::........ |
32+
| @@@@@@@@@%%#%%*%%%%* +%#%%%%%%%%::: .:: |
33+
| #- :#@%*%+#%*%# -*#%+#%+%%*::: .::. .. |
34+
| *%%=##+= :#%+%%+%+:::: .::. =#@@@@@@@@@@%+:- |
35+
| .## %@. .-+%= .::: -@@@@@@@@@@@@@@@@@@ |
36+
| +@@@@- #@+ :::: :%@@@#. =%@@ |
37+
| .@@@@ .@@+ .::: *@@@+ . |
38+
| %@% -* *@@% |
39+
| *@@@: -@%. =@@@ #@@@@@* |
40+
| @@@@@@@@@@+ *@% =@# @@@* %@@@@@@@% |
41+
| :+**=- #@% :: %@* -@@@-.@@@@@@@@@- |
42+
| +@@%#@@@= %@@. =@@@= #@@@@@@@% |
43+
| =@@@@@@@@@@%- -@@@# .#@@@%- |
44+
| :%%%+ %@@@. |
45+
| +@@@@ |
46+
| |
47+
| |
48+
+----------------------------------------------------------------------------+
49+
| |
50+
| ,--, ___ |
51+
| ,---, ,--.'| ,---, ,---, ,--, ,--.'|_ |
52+
| ,---.'| | | : ,---.'| ,---.'| ,--.'| | | :,' |
53+
| | | : : : ' | | : | | : | |, : : ' : |
54+
| : : : | ' | ,---. : : : : : : \`--'_ .;__,' / |
55+
| : |,-.' | | / \\ : |,-.: |,-.,' ,'| | | | |
56+
| | : ' || | : / / || : ' || : ' |' | | :__,'| : |
57+
| | | / :' : |__ . ' / || | / :| | / :| | : ' : |__ |
58+
| ' : |: || | '.'|' ; /|' : |: |' : |: |' : |__ | | '.'| |
59+
| | | '/ :; : ;' | / || | '/ :| | '/ :| | '.'|; : ; |
60+
| | : || , / | : || : || : |; : ;| , / |
61+
| / \\ / ---\`-' \\ \\ / / \\ / / \\ / | , / ---\`-' |
62+
| \`-'----' \`----' \`-'----' \`-'----' ---\`-' |
63+
| |
64+
+----------------------------------------------------------------------------+
65+
| |
66+
| This is an AT Protocol Personal Data Server (aka, an atproto PDS) |
67+
| |
68+
| This PDS contains patches for "permissioned spaces" by Blebbit |
69+
| |
70+
| Proposal: https://github.com/blebbit/atproto/blob/main/proposal.md |
71+
| |
72+
+----------------------------------------------------------------------------+
73+
`,
74+
)
3075
})
3176

3277
router.get('/robots.txt', function (req, res) {

0 commit comments

Comments
 (0)