Created
October 3, 2025 18:51
-
-
Save MrSteve2/f8b61527072dbfbc7ffe3c127f4769d4 to your computer and use it in GitHub Desktop.
Gitignore for Dash apps
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Python | |
__pycache__/ | |
*.py[cod] | |
*$py.class | |
*.so | |
.Python | |
build/ | |
develop-eggs/ | |
dist/ | |
downloads/ | |
eggs/ | |
.eggs/ | |
lib/ | |
lib64/ | |
parts/ | |
sdist/ | |
var/ | |
wheels/ | |
pip-wheel-metadata/ | |
share/python-wheels/ | |
*.egg-info/ | |
.installed.cfg | |
*.egg | |
MANIFEST | |
# Virtual Environments | |
venv/ | |
env/ | |
ENV/ | |
env.bak/ | |
venv.bak/ | |
.venv/ | |
# IDEs and Editors | |
.vscode/ | |
.idea/ | |
*.swp | |
*.swo | |
*~ | |
.project | |
.pydevproject | |
.settings/ | |
*.sublime-project | |
*.sublime-workspace | |
# Jupyter Notebook | |
.ipynb_checkpoints/ | |
*.ipynb | |
# Testing | |
.pytest_cache/ | |
.coverage | |
htmlcov/ | |
.tox/ | |
.nox/ | |
# macOS | |
.DS_Store | |
.AppleDouble | |
.LSOverride | |
._* | |
# Windows | |
Thumbs.db | |
ehthumbs.db | |
Desktop.ini | |
$RECYCLE.BIN/ | |
# Linux | |
*~ | |
.directory | |
.Trash-* | |
# Project-specific | |
# Data files (uncomment if you don't want to track data) | |
# data/ | |
# *.csv | |
# *.xlsx | |
# *.parquet | |
# Environment variables | |
.env | |
.env.local | |
# Logs | |
*.log | |
logs/ | |
# Cache | |
.cache/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment