32 lines
361 B
Plaintext
32 lines
361 B
Plaintext
# Local Python installs / venvs
|
|
.deps/
|
|
.venv/
|
|
venv/
|
|
__pycache__/
|
|
*.pyc
|
|
*.py[cod]
|
|
*.pyo
|
|
|
|
# Secrets — never push
|
|
.env
|
|
|
|
# Runtime data (chats, uploads, db.json). Keep the empty dir in git.
|
|
data/*
|
|
!data/.gitkeep
|
|
|
|
# Logs and test leftovers
|
|
*.log
|
|
*.log.*
|
|
*.out
|
|
*.err
|
|
|
|
# OS junk
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Editor / local scratch
|
|
.isolated/
|
|
.idea/
|
|
.vscode/
|
|
node_modules/
|