init
Some checks failed
Deploy to Cloudflare Pages / deploy (push) Failing after 4s

This commit is contained in:
2026-01-15 18:18:58 +09:00
commit 38e770b2ab
21 changed files with 2129 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
{
"lexicon": 1,
"id": "ai.syui.log.post",
"defs": {
"main": {
"type": "record",
"description": "Record containing a blog post.",
"key": "tid",
"record": {
"type": "object",
"required": ["title", "content", "createdAt"],
"properties": {
"title": {
"type": "string",
"maxLength": 3000,
"maxGraphemes": 300,
"description": "The title of the post."
},
"content": {
"type": "string",
"maxLength": 1000000,
"maxGraphemes": 100000,
"description": "The content of the post."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this post was originally created."
}
}
}
}
}
}

View File

@@ -0,0 +1,15 @@
{
"client_id": "https://syui.ai/client-metadata.json",
"client_name": "ailog",
"client_uri": "https://syui.ai",
"logo_uri": "https://syui.ai/favicon.ico",
"tos_uri": "https://syui.ai/tos",
"policy_uri": "https://syui.ai/policy",
"redirect_uris": ["https://syui.ai/"],
"scope": "atproto transition:generic",
"grant_types": ["authorization_code", "refresh_token"],
"response_types": ["code"],
"token_endpoint_auth_method": "none",
"application_type": "web",
"dpop_bound_access_tokens": true
}

7
public/config.json Normal file
View File

@@ -0,0 +1,7 @@
{
"title": "ailog",
"handle": "syui.ai",
"collection": "ai.syui.log.post",
"network": "bsky.social",
"color": "#0066cc"
}

10
public/networks.json Normal file
View File

@@ -0,0 +1,10 @@
{
"bsky.social": {
"plc": "https://plc.directory",
"bsky": "https://public.api.bsky.app"
},
"syu.is": {
"plc": "https://plc.syu.is",
"bsky": "https://bsky.syu.is"
}
}