-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
35 lines (30 loc) · 718 Bytes
/
Copy path.gitignore
File metadata and controls
35 lines (30 loc) · 718 Bytes
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
30
31
32
33
34
35
# Python
__pycache__/
*.py[cod]
*.egg-info/
.eggs/
.pytest_cache/
.venv/
venv/
env/
# Local cache + append-only observation store — never committed; stays on
# the user's machine until they explicitly contribute
skills/growthkit/data/trends.cache.json
skills/growthkit/data/observations.local.json
skills/growthkit/data/*.corrupt-*.json
skills/growthkit/data/*.tmp
# Owned founder data — NEVER commit real exports
*.local.csv
examples/*_real.csv
# Generated per-user deliverables (the skill writes these into the founder's
# working directory — like fiverr-catalog.html in the sibling project)
growth-plan.json
growth-plan.html
# Secrets / env
.env
*.token
# OS / editor
.DS_Store
Thumbs.db
.idea/
.vscode/