gitignore
This commit is contained in:
parent
2501b5ab0e
commit
116eba71d6
75
.gitignore
vendored
Normal file
75
.gitignore
vendored
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
# --- Byte‑compiled / optimized / DLL files ---
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*$py.class
|
||||||
|
|
||||||
|
# --- C extensions ---
|
||||||
|
*.so
|
||||||
|
|
||||||
|
# --- Distribution / packaging ---
|
||||||
|
.Python
|
||||||
|
build/
|
||||||
|
develop-eggs/
|
||||||
|
dist/
|
||||||
|
downloads/
|
||||||
|
eggs/
|
||||||
|
.eggs/
|
||||||
|
lib/
|
||||||
|
lib64/
|
||||||
|
parts/
|
||||||
|
sdist/
|
||||||
|
var/
|
||||||
|
wheels/
|
||||||
|
*.egg-info/
|
||||||
|
.installed.cfg
|
||||||
|
*.egg
|
||||||
|
*.whl
|
||||||
|
|
||||||
|
# --- Virtual environments ---
|
||||||
|
venv/
|
||||||
|
ENV/
|
||||||
|
env/
|
||||||
|
.env/
|
||||||
|
.venv/
|
||||||
|
|
||||||
|
# --- Odoo / Django / Flask logs and database files ---
|
||||||
|
*.log
|
||||||
|
*.sql
|
||||||
|
*.sqlite3
|
||||||
|
|
||||||
|
# --- Unit test / coverage reports ---
|
||||||
|
htmlcov/
|
||||||
|
.tox/
|
||||||
|
.nox/
|
||||||
|
.coverage
|
||||||
|
.coverage.*
|
||||||
|
.cache
|
||||||
|
pytest_cache/
|
||||||
|
nosetests.xml
|
||||||
|
coverage.xml
|
||||||
|
|
||||||
|
# --- IDEs and editors ---
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
*.sublime-project
|
||||||
|
*.sublime-workspace
|
||||||
|
|
||||||
|
# --- OS generated files ---
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
desktop.ini
|
||||||
|
|
||||||
|
# --- Jupyter Notebook checkpoints ---
|
||||||
|
.ipynb_checkpoints/
|
||||||
|
|
||||||
|
# --- macOS thumbnail database ---
|
||||||
|
.AppleDouble
|
||||||
|
.LSOverride
|
||||||
|
|
||||||
|
# --- Optional: Sensitive files ---
|
||||||
|
# .env # uncomment if you use dotenv for secrets
|
||||||
|
# credentials.json
|
||||||
|
|
||||||
|
# --- Custom local overrides —
|
||||||
|
# local_addons/ # per Odoo: cartelle di moduli custom non versionate
|
||||||
|
# tmp/ # directory temporanea
|
||||||
Loading…
Reference in New Issue
Block a user