-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.gitignore
More file actions
54 lines (45 loc) · 1.35 KB
/
Copy path.gitignore
File metadata and controls
54 lines (45 loc) · 1.35 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Node
node_modules/
dist/
build/
*.tsbuildinfo
npm-debug.log*
# Local run state (background workers persist runs under here by default)
/runs/
# Ignore everything odw writes under .odw/ (runs, scratch) EXCEPT named workflows,
# which are authored source and meant to be committed. The dir negation must come
# before the contents negation, and both are needed for git to descend into it.
.odw/*
!.odw/workflows/
!.odw/workflows/**
odw.config.json
# Generated social promo drafts
/assets/social-card-*/
# Demo-video build workspace: ignore the heavy intermediates (alt renders, audio,
# extracted frames, contact sheets). The final render — videos/odw-demo/odw-product-demo.mp4,
# embedded in the README — and the small build scripts/notes stay tracked.
/videos/odw-demo/variants/
/videos/odw-demo/capture/
/videos/odw-demo/film/
/videos/odw-demo/*.wav
/videos/odw-demo/*.png
# Promo/explainer video build workspaces (renders, QA frames) — same policy as above
/exports/
# OS / editor
.DS_Store
*.log
.claude/
# Leftover Python venv & caches from the pre-rewrite implementation
.venv/
__pycache__/
*.pyc
.pytest_cache/
.ruff_cache/
.mypy_cache/
.gstack/
# 私密微信聊天分析数据(勿提交)
.wechat-analysis/
# 本地飞书文档草稿(只留本地,勿提交)
/docs/feishu/
# web client build artifact (regenerated by npm run build:web)
web/dist/