a a vibe-coded abomination experiment of a fragrance review platform built on the atmosphere. drydown.social

changing domain to drydown.social

+11 -13
+5 -6
public/client-metadata.json
··· 1 1 { 2 - "client_id": "https://drydown.pages.dev/client-metadata.json", 2 + "client_id": "https://drydown.social/client-metadata.json", 3 3 "client_name": "Drydown App", 4 - "client_uri": "https://drydown.pages.dev", 5 - "logo_uri": "https://drydown.pages.dev/vite.svg", 6 - "tos_uri": "https://drydown.pages.dev/tos", 7 - "policy_uri": "https://drydown.pages.dev/policy", 4 + "client_uri": "https://drydown.social", 5 + "logo_uri": "https://drydown.social/vite.svg", 6 + "tos_uri": "https://drydown.social/tos", 7 + "policy_uri": "https://drydown.social/policy", 8 8 "redirect_uris": [ 9 - "https://drydown.pages.dev/", 10 9 "https://drydown.social/" 11 10 ], 12 11 "scope": "atproto transition:generic",
+1 -1
src/app.tsx
··· 49 49 } catch (err) { 50 50 console.error('Auth init failed:', err) 51 51 // If it's a ZodError about localhost, checking the URL might help 52 - const allowedHosts = ['127.0.0.1', 'drydown.pages.dev', 'drydown.social'] 52 + const allowedHosts = ['127.0.0.1', 'drydown.social'] 53 53 if (!allowedHosts.includes(window.location.hostname)) { 54 54 alert(`Configuration Error: Please access this app via one of the allowed domains: ${allowedHosts.join(', ')}.`) 55 55 }
+5 -6
src/auth.ts
··· 23 23 } 24 24 25 25 return { 26 - client_id: 'https://drydown.pages.dev/client-metadata.json', 26 + client_id: 'https://drydown.social/client-metadata.json', 27 27 client_name: 'Drydown App', 28 - client_uri: 'https://drydown.pages.dev', 29 - logo_uri: 'https://drydown.pages.dev/vite.svg', 30 - tos_uri: 'https://drydown.pages.dev/tos', 31 - policy_uri: 'https://drydown.pages.dev/policy', 28 + client_uri: 'https://drydown.social', 29 + logo_uri: 'https://drydown.social/vite.svg', 30 + tos_uri: 'https://drydown.social/tos', 31 + policy_uri: 'https://drydown.social/policy', 32 32 redirect_uris: [ 33 - 'https://drydown.pages.dev/', 34 33 'https://drydown.social/', 35 34 ], 36 35 scope: 'atproto transition:generic',