-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy path.gitignore
More file actions
29 lines (23 loc) · 1.47 KB
/
Copy path.gitignore
File metadata and controls
29 lines (23 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# ── macOS ────────────────────────────────────────────────────────────────────
.DS_Store
**/.DS_Store
# ── Environment / secrets ────────────────────────────────────────────────────
.env
.env.*
!.env.example
# ── Runtime memory (generated by the agent at session time) ──────────────────
# user_profile.md is personal — created fresh per user, not committed
memory/user_profile.md
# idea directories are generated at runtime — one folder per idea evaluated
# keep .gitkeep so the folder exists in fresh clones
memory/ideas/*
!memory/ideas/.gitkeep
# market insight files are generated at runtime — keep the README and folder
memory/market_insights/*.md
!memory/market_insights/README.md
# ── Local-only AI tool settings ──────────────────────────────────────────────
# Claude Code local overrides (project-level settings.json is committed)
.claude/settings.local.json
# ── Logs ─────────────────────────────────────────────────────────────────────
*.log
codex-tui.log