102 lines
1.2 KiB
Plaintext
102 lines
1.2 KiB
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
*.egg-info/
|
|
*.egg
|
|
dist/
|
|
build/
|
|
eggs/
|
|
*.whl
|
|
|
|
# Virtual environments & conda
|
|
venv/
|
|
.venv/
|
|
env/
|
|
miniconda3/
|
|
.conda-envs/
|
|
.conda-pkgs/
|
|
|
|
# PostgreSQL data
|
|
pgdata/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment / secrets — never commit
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
*.pem
|
|
*.key
|
|
|
|
# Frontend (pushed separately)
|
|
new_project/encoach_frontend_new_v1/
|
|
|
|
# Large archives / zips
|
|
*.zip
|
|
*.tar.gz
|
|
*.tar.bz2
|
|
|
|
# Logs
|
|
*.log
|
|
odoo.log
|
|
|
|
# Docker
|
|
*.tar
|
|
|
|
# Node modules
|
|
node_modules/
|
|
frontend/node_modules/
|
|
|
|
# Local dev artifacts
|
|
miniconda3/
|
|
pgdata/
|
|
.conda-envs/
|
|
.conda-pkgs/
|
|
|
|
# Odoo core source (cloned separately)
|
|
odoo/
|
|
|
|
# Local Odoo config and data
|
|
odoo.conf
|
|
/data/
|
|
|
|
# Session files
|
|
sessions/
|
|
|
|
# Filestore
|
|
filestore/
|
|
|
|
# Enterprise / extra addons (not part of this repo)
|
|
addons_enterprise/
|
|
addons_extra/
|
|
new_project/enterprise-17/
|
|
|
|
# Third-party modules (downloaded separately)
|
|
new_project/openeducat_erp-19.0/
|
|
backend/openeducat_erp-19.0/
|
|
new_project/openeducat_erp-19.0.zip
|
|
new_project/openeducate_enterprise-17.zip
|
|
new_project/encoach_frontend_new_v1-main.zip
|
|
|
|
# Local tools
|
|
new_project/.tools/
|
|
|
|
# Coverage / test output
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
|
|
# Poetry
|
|
poetry.lock
|