You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Setting up Bluesky custom handle with an is-a.dev subdomain
8
+
9
+
## Get your verification string
10
+
11
+
1. Open your Bluesky app and go to your profile **Settings**.
12
+
13
+

14
+
15
+
2. Open the **Accounts** page.
16
+
17
+

18
+
19
+
3. Go to the **:icon-mention: Handle** settings.
20
+
21
+

22
+
23
+
4. Click on the "I have my own domain" button.
24
+
25
+

26
+
27
+
5.**Enter** your is-a.dev domain name in the text input and then **Copy** the TXT string. (e.g. `your-subdomain.is-a.dev`).
28
+
29
+

30
+
31
+
32
+
### Create your domain file
33
+
34
+
Create a JSON file inside the `domains/` directory called `domains/_atproto.your-subdomain.json` with the following content and open a pull request:
35
+
36
+
```json
37
+
{
38
+
"owner": {
39
+
"username": "your-github-username"
40
+
},
41
+
"records": {
42
+
"TXT": "bsky-verification-string"
43
+
}
44
+
}
45
+
```
46
+
47
+
> [!NOTE]
48
+
> Don't forget the comma right above the `"records"` key!
49
+
50
+
## Configuration
51
+
52
+
After your pull request has been merged, repeat steps 1-5 and press the `Verify DNS Record` button.
53
+
If it shows any error such as `Failed to verify handle. Please try again.`, try waiting a few minutes (sometimes up to 24 hours) as the DNS might not have propagated yet.
0 commit comments