Add gitignore to exclude sample data and database files

This commit is contained in:
Jarian Cottingham 2026-02-02 20:32:14 -06:00
parent fc6eece076
commit 73867654db

65
.gitignore vendored Normal file
View File

@ -0,0 +1,65 @@
# 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
# PyInstaller
# * https://pyinstaller.readthedocs.io/en/latest/usage.html#cmdoption-onefile
*.onefile
# Jupyter Notebook
.ipynb_checkpoints
# IPython
profile_default/
ipython_config.py
# IDE
.vscode/
.idea/
*.swp
*.swo
# OS generated files
.DS_Store
Thumbs.db
# Logs
*.log
# Environment
.env
.venv/
venv/
# Database
*.db
facts.db
# Sample data
sample/
# Docker
.dockerignore
*.docker