feat: implement API key authentication and user session management
Some checks failed
CI / Typecheck & Lint (push) Has been cancelled

This commit is contained in:
nirholas
2026-03-31 12:43:05 +00:00
parent da6c5e1ed7
commit 3a854557e0
145 changed files with 34693 additions and 690 deletions

36
web/public/manifest.json Normal file
View File

@@ -0,0 +1,36 @@
{
"name": "Claude Code",
"short_name": "Claude",
"description": "Claude Code — AI-powered development assistant",
"start_url": "/",
"display": "standalone",
"background_color": "#09090f",
"theme_color": "#09090f",
"orientation": "portrait-primary",
"scope": "/",
"lang": "en",
"icons": [
{
"src": "/icons/icon-192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "/icons/icon-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any maskable"
}
],
"categories": ["productivity", "developer tools"],
"shortcuts": [
{
"name": "New Conversation",
"short_name": "New Chat",
"description": "Start a new conversation",
"url": "/?new=1",
"icons": [{ "src": "/icons/icon-192.png", "sizes": "192x192" }]
}
]
}