54 lines
1.0 KiB
Plaintext
54 lines
1.0 KiB
Plaintext
# --- Lemontropia-Suite Secrets & Config ---
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
mcp_servers.json
|
|
# Ignore your Gitea token if it's in a separate file
|
|
gitea_token.txt
|
|
|
|
# --- AI & Agent Instructions ---
|
|
# We keep the core MD files but ignore any session-specific AI "memory"
|
|
.kimi_instructions
|
|
.claude/
|
|
.cursor/
|
|
.aider*
|
|
# If you have specific AI "prompt" scratchpads you don't want to sync:
|
|
SCRATCHPAD.md
|
|
|
|
# --- Database & Logs (Binary/Temporary) ---
|
|
# Ignore the actual databases - we want to track the code, not the raw data
|
|
data/*.db
|
|
data/*.db-journal
|
|
data/*.sqlite
|
|
logs/
|
|
*.log
|
|
# Entropia Universe logs are external, but let's be safe
|
|
chat.log
|
|
|
|
# --- Python Environment ---
|
|
venv/
|
|
.venv/
|
|
env/
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.pytest_cache/
|
|
|
|
# --- Node.js / MCP Dependencies ---
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.npx/
|
|
|
|
# --- OS & IDE Files ---
|
|
.vscode/
|
|
.idea/
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# --- Obsidian Specifics ---
|
|
# We want the notes, but not the workspace settings or hidden internal data
|
|
.obsidian/workspace
|
|
.obsidian/workspace.json
|
|
.obsidian/cache/ |