All user persona data (memory, tasks, crons, identity files, sessions) was previously committed. This removes it from tracking and adds home/ to .gitignore — files remain on disk and will continue to sync via Syncthing. Backup should be handled via encrypted per-user means. Also added: cortex/.env*.bak and cortex/=* (pip artifact) to gitignore. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
30 lines
434 B
Plaintext
30 lines
434 B
Plaintext
# Environments
|
|
.venv/
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# Secrets — keep .env.default, never commit real .env
|
|
.env
|
|
cortex/.env*.bak
|
|
|
|
# Pip install artifacts
|
|
cortex/=*
|
|
|
|
# Runtime data
|
|
cortex/data/
|
|
|
|
# User home directory — all persona data, memory, tasks, and credentials
|
|
# are personal and must never be committed. Back up via encrypted means.
|
|
home/
|
|
|
|
# Syncthing metadata
|
|
.stfolder/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
*.tmp
|
|
*.log
|
|
|
|
# System files
|
|
.DS_Store
|