Use Deno for speed, package locks in dev setup, github workflows

It's faster than yarn and comes with standard convenience utilities
This commit is contained in:
Debanjum
2025-06-08 19:07:06 -07:00
parent 006b958071
commit d2940de367
4 changed files with 5278 additions and 3 deletions

View File

@@ -6,7 +6,7 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint": "deno fmt",
"collectstatic": "bash -c 'pushd ../../../ && source .venv/bin/activate && python3 src/khoj/manage.py collectstatic --noinput && deactivate && popd'",
"cicollectstatic": "bash -c 'pushd ../../../ && python3 src/khoj/manage.py collectstatic --noinput && popd'",
"export": "yarn build && cp -r out/ ../../khoj/interface/built && yarn collectstatic",