Updated dj-lite for #Django to 1.0.0! 💡
- Add kwargs for all default pragmas
- Allow adding additional pragmas if needed
- Substantial updates to the readme
- Add `temp_store=MEMORY` pragma by default (from Oliver Andrich (npub1nyl…ltu2))
Default #SQLite pragmas are now:
```
PRAGMA journal_mode=WAL;
PRAGMA synchronous=NORMAL;
PRAGMA temp_store=MEMORY;
PRAGMA mmap_size=134217728;
PRAGMA journal_size_limit=27103364;
PRAGMA cache_size=2000;
```
🛠️ https://github.com/adamghill/dj-lite
📦 https://pypi.org/project/dj-lite/