Files
devplacepy/.gitignore
T
retoor 08b3ad3921 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-13 19:06:43 +00:00

35 lines
681 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/
# Consolidated runtime data dir (DB, uploads, keys, locks, bot state, job staging,
# container workspaces). Single root, never inside the package.
data/
# Legacy runtime data dir (pre-consolidation); kept ignored for un-migrated installs.
var/
# coverage
.coverage
.coverage.*
htmlcov/