Files
TrulyMEM-TrueHumanMEM-local/.gitignore
root 46008c14c5 feat: web login system, auto-load history, config extraction
- Add Flask session-based authentication (username/password login)
- Auto-load chat history from backend on page load
- Extract SECRET_KEY and user credentials to web_config.json
- Create web_config.example.json as template
- Add web_config.json to .gitignore (sensitive info)
- Update docs: architecture, API reference, quick start guides
2026-04-28 09:25:47 +08:00

70 lines
561 B
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
develop-eggs/
dist/
downloads/
eggs/
.lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# Virtual Environment
venv/
test_venv/
ENV/
env/
# IDE
.vscode/
.idea/
.arts/
.codeartsdoer/
*.swp
*.swo
*~
# Database
*.db
*.sqlite
*.sqlite3
# Logs
*.log
logs/
# OS
.DS_Store
Thumbs.db
# Sensitive
.env
*.key
*.pem
config.json
# Build
dist/
# Temporary
*.tmp
*.bak
# AI Generated
jimeng*.png
# Test Cache
.pytest_cache/
# Web config (contains passwords, secret keys)
web_config.json