tangled
alpha
login
or
join now
taurean.bryant.land
/
drydown
1
fork
atom
a a vibe-coded abomination experiment of a fragrance review platform built on the atmosphere.
drydown.social
1
fork
atom
overview
issues
pulls
pipelines
changing domain to drydown.social
taurean.bryant.land
2 months ago
31124605
b96a6d8a
+11
-13
3 changed files
expand all
collapse all
unified
split
public
client-metadata.json
src
app.tsx
auth.ts
+5
-6
public/client-metadata.json
···
1
1
{
2
2
-
"client_id": "https://drydown.pages.dev/client-metadata.json",
2
2
+
"client_id": "https://drydown.social/client-metadata.json",
3
3
"client_name": "Drydown App",
4
4
-
"client_uri": "https://drydown.pages.dev",
5
5
-
"logo_uri": "https://drydown.pages.dev/vite.svg",
6
6
-
"tos_uri": "https://drydown.pages.dev/tos",
7
7
-
"policy_uri": "https://drydown.pages.dev/policy",
4
4
+
"client_uri": "https://drydown.social",
5
5
+
"logo_uri": "https://drydown.social/vite.svg",
6
6
+
"tos_uri": "https://drydown.social/tos",
7
7
+
"policy_uri": "https://drydown.social/policy",
8
8
"redirect_uris": [
9
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
52
-
const allowedHosts = ['127.0.0.1', 'drydown.pages.dev', 'drydown.social']
52
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
26
-
client_id: 'https://drydown.pages.dev/client-metadata.json',
26
26
+
client_id: 'https://drydown.social/client-metadata.json',
27
27
client_name: 'Drydown App',
28
28
-
client_uri: 'https://drydown.pages.dev',
29
29
-
logo_uri: 'https://drydown.pages.dev/vite.svg',
30
30
-
tos_uri: 'https://drydown.pages.dev/tos',
31
31
-
policy_uri: 'https://drydown.pages.dev/policy',
28
28
+
client_uri: 'https://drydown.social',
29
29
+
logo_uri: 'https://drydown.social/vite.svg',
30
30
+
tos_uri: 'https://drydown.social/tos',
31
31
+
policy_uri: 'https://drydown.social/policy',
32
32
redirect_uris: [
33
33
-
'https://drydown.pages.dev/',
34
33
'https://drydown.social/',
35
34
],
36
35
scope: 'atproto transition:generic',