An easy-to-host PDS on the ATProtocol, MacOS. Grandma-approved.

docs: remove stale greet references from identity-wallet CLAUDE.md

authored by malpercio.dev and committed by

Tangled b1f19247 edeaa134

+2 -3
+2 -3
apps/identity-wallet/CLAUDE.md
··· 28 28 ### Rust Backend (src-tauri/) 29 29 30 30 **Exposes:** 31 - - `src/lib.rs::greet(name: String) -> String` — Tauri IPC command (demo, still registered) 32 31 - `src/lib.rs::create_account(claim_code: String, email: String, handle: String) -> Result<CreateAccountResult, CreateAccountError>` — Tauri IPC command: generates P-256 keypair, stores private key in Keychain, POSTs to relay `/v1/accounts/mobile`, stores tokens in Keychain on success 33 32 - `src/keychain.rs` — iOS Keychain abstraction (`store_item`, `get_item`) under service `"ezpds-identity-wallet"` 34 33 - `src/http.rs` — `RelayClient` with compile-time base URL (localhost:8080 debug, relay.ezpds.com release) ··· 156 155 ## Key Files 157 156 158 157 - `src-tauri/tauri.conf.json` -- Tauri config: bundle ID, devUrl, frontendDist, window settings 159 - - `src-tauri/src/lib.rs` -- Tauri IPC commands (`greet`, `create_account`) and `run()` (mobile entry point) 158 + - `src-tauri/src/lib.rs` -- Tauri IPC commands (`create_account`) and `run()` (mobile entry point) 160 159 - `src-tauri/src/main.rs` -- Desktop entry point (calls `lib::run()`) 161 160 - `src-tauri/src/keychain.rs` -- iOS Keychain abstraction (store_item, get_item) 162 161 - `src-tauri/src/http.rs` -- RelayClient with compile-time base URL 163 162 - `src-tauri/.cargo/config.toml` -- Cargo toolchain overrides for iOS cross-compilation (CC, AR, linker per target) 164 - - `src/lib/ipc.ts` -- Typed TypeScript wrappers for all Tauri IPC commands (greet, createAccount) 163 + - `src/lib/ipc.ts` -- Typed TypeScript wrappers for all Tauri IPC commands (createAccount) 165 164 - `src/lib/components/onboarding/` -- Five onboarding screen components 166 165 - `src/routes/+page.svelte` -- Onboarding state machine (welcome -> claim_code -> email -> handle -> loading -> did_ceremony) 167 166 - `src/routes/+layout.ts` -- `ssr = false; prerender = false` (global SPA config)