diff --git a/.gitignore b/.gitignore index d802c0392ac9904383b7c68e8c1e9e969938e1e0..e03dd6fb9a0982e7f53eac5d02f909f9cfe50714 100755 --- a/.gitignore +++ b/.gitignore @@ -1,24 +1,15 @@ -# ------------------------------------------------------------------------ -# IGNORA FILE/REGISTRI DI SISTEMA -# ------------------------------------------------------------------------ + .DS_Store Thumbs.db -# ------------------------------------------------------------------------ -# VISUAL STUDIO CODE -# ------------------------------------------------------------------------ .vscode/ -.history/ # Se usi l'estensione VSCode "Local History" +.history/ -# Se vuoi ignorare file di configurazione specifici (opzionale): .vscode/settings.json .vscode/tasks.json .vscode/launch.json -# ------------------------------------------------------------------------ -# AMBIENTE VIRTUALE (venv) -# ------------------------------------------------------------------------ -# Se hai creato la venv con 'python -m venv venv' + venv/ .venv/ env/ @@ -27,34 +18,27 @@ ENV/ venv.bak/ venv_*/ -# ------------------------------------------------------------------------ -# PYTHON -# ------------------------------------------------------------------------ -# Compiled __pycache__/ *.py[cod] *$py.class -# Pacchetti e metadati + *.egg *.egg-info/ .eggs/ -# Distribuzioni + build/ dist/ wheels/ pip-wheel-metadata/ *.wheel -# Logs e file temporanei + *.log *.tmp *.temp -# ------------------------------------------------------------------------ -# TEST & COVERAGE -# ------------------------------------------------------------------------ htmlcov/ .tox/ .coverage @@ -67,19 +51,11 @@ coverage.xml *.py,cover .hypothesis/ -# ------------------------------------------------------------------------ -# JUPYTER NOTEBOOK -# ------------------------------------------------------------------------ .ipynb_checkpoints -# ------------------------------------------------------------------------ -# FILE DI CONFIGURAZIONE / CREDENZIALI -# ------------------------------------------------------------------------ -# Se hai file di ambiente con variabili segrete: + .env *.env -# Se usi Docker (opzionale): -# Dockerfile -# docker-compose.yml -# ------------------------------------------------------------------------ +.gitignore +