mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-01-22 15:08:47 +01:00
918 B
918 B
DRAFT role docker-bluesky
Set variables
bluesky_pds_jwt_secret
openssl rand -base64 64 | tr -d '\n'
for
bluesky_pds_plc_rotation_key_k256_private_key_hex
openssl rand -hex 32
bluesky_pds_admin_password
openssl rand -base64 16
bluesky_database_password
openssl rand -base64 32
create user
curl -X POST https://your-pds-domain/xrpc/com.atproto.server.createAccount \
-H "Content-Type: application/json" \
-d '{
"email": "user@example.com",
"handle": "username",
"password": "securepassword123",
"inviteCode": "optional-invite-code"
}'