mirror of
https://github.com/kjanat/livegraphs-django.git
synced 2026-02-13 10:29:30 +01:00
Introduces uv-based Docker workflow with non-root runtime, cached installs, and uv-run for web and Celery. Updates docker-compose to Postgres + Redis, loads .env, and removes source bind mount for reproducible builds. Switches settings to use Postgres when env is present with SQLite fallback; broadens allowed hosts for containerized development. Adds psycopg2-binary and updates sample env for Redis in Docker. Adds company scoping to external data models and links sessions during ingestion; provides management commands to seed a Jumbo company/users and sync external chat data into the dashboard. Includes .dockerignore, TypeScript config and typings, and minor template/docs tweaks. Requires database migration.
33 lines
1.1 KiB
JSON
33 lines
1.1 KiB
JSON
{
|
|
"name": "livegraphs-django",
|
|
"private": true,
|
|
"scripts": {
|
|
"format": "prettier --write .; bun format:py",
|
|
"format:check": "prettier --check .; bun format:py -- --check",
|
|
"format:py": "uvx ruff format",
|
|
"lint:js": "oxlint",
|
|
"lint:js:fix": "bun lint:js -- --fix",
|
|
"lint:js:strict": "oxlint --import-plugin -D correctness -W suspicious",
|
|
"lint:md": "markdownlint-cli2 \"**/*.md\" \"#node_modules\" \"#.{node_modules,trunk,grit,venv,opencode,github/chatmodes,claude/agents}\"",
|
|
"lint:md:fix": "bun lint:md -- --fix",
|
|
"lint:py": "uvx ruff check",
|
|
"lint:py:fix": "uvx ruff check --fix",
|
|
"typecheck:js": "oxlint --type-aware",
|
|
"typecheck:js:fix": "bun typecheck:js -- --fix",
|
|
"typecheck:py": "uvx ty check"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.56.1",
|
|
"@types/bun": "latest",
|
|
"markdownlint-cli2": "^0.18.1",
|
|
"oxlint": "^1.25.0",
|
|
"oxlint-tsgolint": "^0.5.0",
|
|
"prettier": "^3.6.2",
|
|
"prettier-plugin-jinja-template": "^2.1.0",
|
|
"prettier-plugin-packagejson": "^2.5.19"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5"
|
|
}
|
|
}
|