Files
devplacepy/.gitignore
T
retoor bb82b7c6e6 feat: add user_id index to profiles table for faster lookups
The profiles table previously lacked an index on the user_id column, causing full table scans during user lookups. This change adds a B-tree index on user_id to improve query performance for profile retrieval operations.
2026-06-12 03:37:12 +00:00

32 lines
526 B
Plaintext

.cache
.local
.devplace_bots/
__pycache__/
*.py[cod]
*.egg-info/
.env
agents/reports/
devplace.db*
devplace-services.lock
devplace-init.lock
.vapid.lock
notification-private.pem
notification-private.pkcs8.pem
notification-public.pem
.pytest_cache/
.opencode
devii_*.db
devii_*.db-shm
devii_*.db-wal
devii.log
webdata/
# Uploaded/downloaded files - never track in git
devplacepy/static/uploads/
# Runtime data dir (container workspaces, zip artifacts) - never inside the package
var/
# coverage
.coverage
.coverage.*
htmlcov/