-
Notifications
You must be signed in to change notification settings - Fork 310
Add /dev terminal-style landing page #2830
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -13,5 +13,10 @@ export const SPECIAL_PAGES = [ | |||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||
| Browse integrations by category including AI, Deployments, Messaging, Auth, Payments, Logging, MCP, Databases, Search, Sites, and Storage.` | ||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||
| // Add more special pages here as needed | ||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||
| href: '/terminal', | ||||||||||||||||||||||||||||||||||||
| title: 'Appwrite Terminal', | ||||||||||||||||||||||||||||||||||||
| description: | ||||||||||||||||||||||||||||||||||||
| 'Interactive terminal-style overview of Appwrite — an open-source backend with auth, databases, storage, functions, realtime, messaging, and hosting. Includes product explanations, SDK examples, and developer easter eggs.' | ||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||
|
Comment on lines
+16
to
+21
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing The context snippet from 🛠️ Proposed fix — add fullContent field {
href: '/terminal',
title: 'Appwrite Terminal',
description:
- 'Interactive terminal-style overview of Appwrite — an open-source backend with auth, databases, storage, functions, realtime, messaging, and hosting. Includes product explanations, SDK examples, and developer easter eggs.'
+ 'Interactive terminal-style overview of Appwrite — an open-source backend with auth, databases, storage, functions, realtime, messaging, and hosting. Includes product explanations, SDK examples, and developer easter eggs.',
+ fullContent: `Interactive terminal-style overview of Appwrite — an open-source backend with auth, databases, storage, functions, realtime, messaging, and hosting.
+
+Products: Auth (authentication with OAuth, magic links, MFA), Databases (document database with REST/GraphQL), Storage (file storage with transforms), Functions (serverless in multiple runtimes), Messaging (push, email, SMS), Realtime (WebSocket subscriptions), and Hosting (static/SSR deployment).
+
+Includes SDK code examples and links to documentation for each product.`
}📝 Committable suggestion
Suggested change
🧰 Tools🪛 Biome (2.4.7)[error] 16-16: expected (parse) 🤖 Prompt for AI Agents |
||||||||||||||||||||||||||||||||||||
| ] as const; | ||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Syntax error: missing comma between array elements.
The static analysis correctly identifies a missing comma after the first object (line 15) and before the second object (line 16). This will cause a parse error.
🐛 Proposed fix
📝 Committable suggestion
🧰 Tools
🪛 Biome (2.4.7)
[error] 16-16: expected
,but instead found{(parse)
🤖 Prompt for AI Agents