mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-27 23:01:21 +00:00
11 lines
528 B
Bash
Executable file
11 lines
528 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
curl -H "Accept: application/activity+json" https://lemmy.ml/u/nutomic | jq \
|
|
> crates/apub/assets/lemmy-person.json
|
|
curl -H "Accept: application/activity+json" https://lemmy.ml/c/announcements | jq \
|
|
> crates/apub/assets/lemmy-community.json
|
|
curl -H "Accept: application/activity+json" https://lemmy.ml/post/55143 | jq \
|
|
> crates/apub/assets/lemmy-post.json
|
|
curl -H "Accept: application/activity+json" https://queer.hacktivis.me/users/lanodan | jq \
|
|
> crates/apub/assets/pleroma-person.json
|