Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
d71c4ba
create app
adityaoberai Nov 27, 2025
7df4cec
remove initial draft rules file
adityaoberai Nov 27, 2025
4181a43
Add multitenancy guideline to rules generator
adityaoberai Nov 27, 2025
ad12780
Add Apple and Android SDK support to rules generator; update installa…
adityaoberai Nov 27, 2025
50a1829
Update Dart SDK installation instructions and enhance Qwik security n…
adityaoberai Nov 27, 2025
8684766
Change "real-time" to "realtime"
adityaoberai Nov 27, 2025
90b5005
update favicon to appwrite logo
adityaoberai Nov 27, 2025
0d05102
Add MCP section to rules generator and update package.json with Next.…
adityaoberai Nov 27, 2025
d2ef717
Enhance README with detailed features and usage instructions for Appw…
adityaoberai Nov 27, 2025
db0f222
Integrate permission examples into rules generator documentation; enh…
adityaoberai Nov 27, 2025
5d7e367
Add API endpoints for SDK listing and rule generation
adityaoberai Nov 28, 2025
9c347b5
Replace "document" with "row" and "collection" with "table"
adityaoberai Nov 28, 2025
404442e
Remove outdated common product links
adityaoberai Nov 28, 2025
1b2f159
Remove redundant authentication documentation link from common produc…
adityaoberai Nov 28, 2025
3a5ceb0
Remove unnecessary JSDoc comment from SDK server route
adityaoberai Nov 28, 2025
2cfc254
Refactor rules generator functions to remove unnecessary parameters
adityaoberai Nov 28, 2025
cf48a44
Refactor installation instructions and enhance SSR authentication doc…
adityaoberai Dec 15, 2025
2e52986
Update AGENTS.md generation and documentation; refactor rules generat…
adityaoberai Dec 19, 2025
dd27f5b
Add EXAMPLE-AGENTS.md for comprehensive Appwrite development guidelin…
adityaoberai Dec 19, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
node_modules

# Output
.output
.vercel
.netlify
.wrangler
/.svelte-kit
/build

# OS
.DS_Store
Thumbs.db

# Env
.env
.env.*
!.env.example
!.env.test

# Vite
vite.config.js.timestamp-*
vite.config.ts.timestamp-*

# Rules

AGENTS.md
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
engine-strict=true
9 changes: 9 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Package Managers
package-lock.json
pnpm-lock.yaml
yarn.lock
bun.lock
bun.lockb

# Miscellaneous
/static/
17 changes: 17 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
"plugins": [
"prettier-plugin-svelte"
],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
}
Loading