Skip to content

Instantly share code, notes, and snippets.

@ArthurDelannoyazerty
Last active July 4, 2025 08:22
Show Gist options
  • Save ArthurDelannoyazerty/f304bf0d39de36854802c1d8e260bb61 to your computer and use it in GitHub Desktop.
Save ArthurDelannoyazerty/f304bf0d39de36854802c1d8e260bb61 to your computer and use it in GitHub Desktop.
My .gitignore
# IDE
# .vscode/      # commented to share info with others

# MacOS
*.DS_Store

# Virtual env
.venv/
venv/
environment/

# Secrets
.env
.s3cfg

# Python
**.pyc
**/__pycache__/**
**/.ipynb_checkpoints/**
*.pth

# Large data
cache/
dataset/
sample_dataset/

# Docker
docker/volume/

# Logs
logs/

# Custom
# Add here 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment