A CLI for scaffolding ATProto web applications

chore(templates): update all templates to use dids instead of handles

authored by besaid.zone and committed by tangled.org bc8cc42c 13634226

+19 -12
+5
.changeset/tasty-bags-kick.md
··· 1 + --- 2 + "@nulfrost/create-atproto-app": patch 3 + --- 4 + 5 + update all templates to use dids instead of handles
+7 -6
templates/react-ts/src/App.tsx
··· 6 6 7 7 const client = new Client("https://public.api.bsky.app"); 8 8 9 + // https://atproto.com/specs/did 9 10 const people: AtIdentifierString[] = [ 10 - "pfrazee.com", 11 - "rude1.blacksky.team", 12 - "jcsalterego.bsky.social", 13 - "byarielm.fyi", 14 - "vicwalker.dev.br", 15 - "nonbinary.computer", 11 + "did:plc:ragtjsm2j2vknwkz3zp4oxrd", 12 + "did:plc:w4xbfzo7kqfes5zb7r6qv3rw", 13 + "did:plc:vc7f4oafdgxsihk4cry2xpze", 14 + "did:plc:6i6n57nrkq6xavqbdo6bvkqr", 15 + "did:plc:fip3nyk6tjo3senpq4ei2cxw", 16 + "did:plc:yfvwmnlztr4dwkb7hwz55r2g", 16 17 ]; 17 18 18 19 async function getProfile() {
+7 -6
templates/svelte-ts/src/App.svelte
··· 5 5 6 6 const client = new Client("https://public.api.bsky.app"); 7 7 8 + // https://atproto.com/specs/did 8 9 const people: AtIdentifierString[] = [ 9 - "pfrazee.com", 10 - "rude1.blacksky.team", 11 - "jcsalterego.bsky.social", 12 - "byarielm.fyi", 13 - "vicwalker.dev.br", 14 - "nonbinary.computer", 10 + "did:plc:ragtjsm2j2vknwkz3zp4oxrd", 11 + "did:plc:w4xbfzo7kqfes5zb7r6qv3rw", 12 + "did:plc:vc7f4oafdgxsihk4cry2xpze", 13 + "did:plc:6i6n57nrkq6xavqbdo6bvkqr", 14 + "did:plc:fip3nyk6tjo3senpq4ei2cxw", 15 + "did:plc:yfvwmnlztr4dwkb7hwz55r2g", 15 16 ]; 16 17 17 18 async function getProfile() {