fix(lint): resolve pre-commit formatting

This commit is contained in:
RocketQuack 2026-03-19 11:57:06 +01:00
parent 1b8ddeadfd
commit ce1d7b301a
3 changed files with 6 additions and 1 deletions

2
.gitignore vendored
View file

@ -31,4 +31,4 @@ node_modules
# VitePress
**/.vitepress/dist
**/.vitepress/cache
**/.vitepress/cache

View file

@ -34,6 +34,7 @@ repos:
rev: v2.4.1
hooks:
- id: codespell
exclude: ^docs/pnpm-lock\.yaml$
args:
- -L
- "ro"

View file

@ -56,18 +56,22 @@ bench/
### Key Architectural Differences
1. **Multi-tenancy**
- Django: One app = one database (typically)
- Frappe: One installation = many sites, each with own database
2. **Background Jobs**
- Django: Requires Celery + Redis + worker setup
- Frappe: Built-in queue system, just use `enqueue()`
3. **Real-time**
- Django: Requires Channels + Redis + ASGI setup
- Frappe: Socket.IO built-in, automatic for DocType updates
4. **Admin/Management**
- Django: Admin for models, basic CRUD
- Frappe: Full-featured Desk with reports, dashboards, permissions