Backend (encoach_ai_course):
- workbook_attempt model + scoring + REST endpoints for student attempts
- dialogue_parser splits scripts by speaker, classifies gender, strips labels
- media_service: multi-voice TTS via Polly/ElevenLabs, ffmpeg concatenation,
manual media upload endpoint (audio/image/video) with size validation
- source_indexer: OCR fallback (pytesseract + pdf2image) for scanned PDFs,
page-streaming to stay under memory limit
- exercise_extractor + rag_context for RAG-grounded interactive workbooks
- course_plan_pipeline: v2 generator that grounds week material on indexed
sources and persists grounded_on_json metadata
- security: access rules for new models
Backend (encoach_lms_api):
- branches model + controller (entity-scoped LMS branches)
- classroom_ext + course_ext (assignment + section workflow)
- classrooms controller: students/teachers/assign-course endpoints
Frontend:
- StudentDashboard: surface assigned AI course plans alongside enrollments;
enrolled-courses stat now counts plans+enrollments
- InteractiveWorkbook + PlanReader components
- AdminCoursePlanDetail: media drawer with upload buttons (audio/image/video),
hidden file inputs, upload mutation
- AdminBranches page + sidebar entry
- coursePlan/lms/classrooms services + types updated for new endpoints
- i18n: studentDash.myCoursePlans/noCoursePlans (en + ar)
Infra & docs:
- odoo.conf: bump memory limits to 4G/5G for OCR + sentence-transformers
- .gitignore: ignore *.tsbuildinfo
- docs/ASSIGNMENT_WORKFLOW.{md,pdf}
- smoke_*.py end-to-end tests for assignment workflow, entity isolation,
course-plan RAG pipeline
Made-with: Cursor
48 lines
1.7 KiB
Plaintext
48 lines
1.7 KiB
Plaintext
# =====================================================================
|
|
# .cursorindexingignore — files Cursor should NOT index for semantic
|
|
# search, but that you can still open or @-mention on demand.
|
|
#
|
|
# Use this for vendored / third-party / generated code that is
|
|
# occasionally useful to read but should not pollute search results
|
|
# or be sent to the model on every agent turn.
|
|
#
|
|
# (Note: .gitignore is already honored by Cursor's indexer, so we
|
|
# only list things NOT already in .gitignore here.)
|
|
# =====================================================================
|
|
|
|
# ---------- Vendored OpenEduCat ERP (LGPL-3, tracked in repo) ----------
|
|
# 48 MB of third-party Odoo modules. Required at runtime but rarely
|
|
# needs to be in semantic search context.
|
|
backend/openeducat_erp-19.0/
|
|
|
|
# ---------- Other vendored snapshots inside new_project/ --------------
|
|
# Some of these are gitignored already; listed defensively.
|
|
new_project/enterprise-19/
|
|
new_project/openeducat_erp-19.0/
|
|
new_project/encoach_frontend_new_v1/
|
|
|
|
# ---------- Translation catalogs (huge, low semantic value) ------------
|
|
# .po / .pot files are massive and rarely useful to the agent.
|
|
**/i18n/*.po
|
|
**/i18n/*.pot
|
|
**/i18n_extra/*.po
|
|
**/i18n_extra/*.pot
|
|
|
|
# ---------- Vendored static assets inside Odoo modules -----------------
|
|
# These are minified third-party JS/CSS, fonts, icons, screenshots —
|
|
# never useful for code understanding.
|
|
**/static/lib/**
|
|
**/static/fonts/**
|
|
**/static/description/**
|
|
**/static/src/img/**
|
|
**/static/src/scss/lib/**
|
|
|
|
# ---------- Generated docs ---------------------------------------------
|
|
**/doc/_build/
|
|
**/docs/_build/
|
|
|
|
# ---------- Database / Odoo backup dumps ------------------------------
|
|
*.dump
|
|
*.sql.gz
|
|
*.sql.xz
|