tangled
alpha
login
or
join now
altagos.dev
/
bspds-sandbox
forked from
lewis.moe/bspds-sandbox
0
fork
atom
PDS software with bells & whistles you didn’t even know you needed. will move this to its own account when ready.
0
fork
atom
overview
issues
pulls
pipelines
More ref PDSes
lewis.moe
3 months ago
0d4328cd
1c2a5805
+19
-4
2 changed files
expand all
collapse all
unified
split
.gitignore
ref_pds_downloader.sh
+2
-1
.gitignore
···
2
2
3
3
.env
4
4
5
5
-
reference-pds/
5
5
+
reference-pds-hailey/
6
6
+
reference-pds-bsky/
+17
-3
ref_pds_downloader.sh
···
1
1
-
git clone --depth 1 https://github.com/haileyok/cocoon reference-pds
1
1
+
#!/bin/bash
2
2
3
3
-
cd reference-pds
3
3
+
echo "Downloading haileyok/cocoon"
4
4
+
git clone --depth 1 https://github.com/haileyok/cocoon reference-pds-hailey
5
5
+
rm -rf reference-pds-hailey/.git
4
6
5
5
-
rm -rf .git
7
7
+
echo "Downloading bluesky-social/atproto pds package"
8
8
+
mkdir reference-pds-bsky
9
9
+
cd reference-pds-bsky
10
10
+
git init
11
11
+
git remote add origin https://github.com/bluesky-social/atproto.git
12
12
+
git config core.sparseCheckout true
13
13
+
echo "packages/pds" >> .git/info/sparse-checkout
14
14
+
git pull --depth 1 origin main
15
15
+
mv packages/pds/* .
16
16
+
rm -rf packages .git
17
17
+
cd ..
18
18
+
19
19
+
echo "Downloads complete!"