# ===================================================================== # .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