Skip to content
Snippets Groups Projects
Commit b7f4f3de authored by Soufiane's avatar Soufiane
Browse files

.gitignore

parent 399604f9
No related branches found
No related tags found
No related merge requests found
# ------------------------------------------------------------------------
# IGNORA FILE/REGISTRI DI SISTEMA
# ------------------------------------------------------------------------
.DS_Store .DS_Store
Thumbs.db Thumbs.db
# ------------------------------------------------------------------------
# VISUAL STUDIO CODE
# ------------------------------------------------------------------------
.vscode/ .vscode/
.history/ # Se usi l'estensione VSCode "Local History" .history/
# Se vuoi ignorare file di configurazione specifici (opzionale):
.vscode/settings.json .vscode/settings.json
.vscode/tasks.json .vscode/tasks.json
.vscode/launch.json .vscode/launch.json
# ------------------------------------------------------------------------
# AMBIENTE VIRTUALE (venv)
# ------------------------------------------------------------------------
# Se hai creato la venv con 'python -m venv venv'
venv/ venv/
.venv/ .venv/
env/ env/
...@@ -27,34 +18,27 @@ ENV/ ...@@ -27,34 +18,27 @@ ENV/
venv.bak/ venv.bak/
venv_*/ venv_*/
# ------------------------------------------------------------------------
# PYTHON
# ------------------------------------------------------------------------
# Compiled
__pycache__/ __pycache__/
*.py[cod] *.py[cod]
*$py.class *$py.class
# Pacchetti e metadati
*.egg *.egg
*.egg-info/ *.egg-info/
.eggs/ .eggs/
# Distribuzioni
build/ build/
dist/ dist/
wheels/ wheels/
pip-wheel-metadata/ pip-wheel-metadata/
*.wheel *.wheel
# Logs e file temporanei
*.log *.log
*.tmp *.tmp
*.temp *.temp
# ------------------------------------------------------------------------
# TEST & COVERAGE
# ------------------------------------------------------------------------
htmlcov/ htmlcov/
.tox/ .tox/
.coverage .coverage
...@@ -67,19 +51,11 @@ coverage.xml ...@@ -67,19 +51,11 @@ coverage.xml
*.py,cover *.py,cover
.hypothesis/ .hypothesis/
# ------------------------------------------------------------------------
# JUPYTER NOTEBOOK
# ------------------------------------------------------------------------
.ipynb_checkpoints .ipynb_checkpoints
# ------------------------------------------------------------------------
# FILE DI CONFIGURAZIONE / CREDENZIALI
# ------------------------------------------------------------------------
# Se hai file di ambiente con variabili segrete:
.env .env
*.env *.env
# Se usi Docker (opzionale): .gitignore
# Dockerfile
# docker-compose.yml
# ------------------------------------------------------------------------
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment