Skip to content

Commit 75a2955

Browse files
committed
Initial AGPL release
0 parents  commit 75a2955

248 files changed

Lines changed: 56274 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 111 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
/experiments
4+
5+
# dependencies
6+
/node_modules
7+
**/models
8+
/.pnp
9+
.pnp.*
10+
.yarn/*
11+
!.yarn/patches
12+
!.yarn/plugins
13+
!.yarn/releases
14+
!.yarn/versions
15+
*.mp4
16+
17+
# testing
18+
/coverage
19+
/dist
20+
21+
# next.js
22+
/.next/
23+
/out/
24+
25+
# production
26+
/build
27+
28+
# misc
29+
.DS_Store
30+
*.pem
31+
32+
# debug
33+
npm-debug.log*
34+
yarn-debug.log*
35+
yarn-error.log*
36+
.pnpm-debug.log*
37+
38+
# env files (can opt-in for committing if needed)
39+
.env*
40+
41+
# vercel
42+
.vercel
43+
44+
# typescript
45+
*.tsbuildinfo
46+
next-env.d.ts
47+
48+
# Audio files
49+
*.wav
50+
51+
# Large media files
52+
docs/demo.mov
53+
docs/demo.gif
54+
55+
56+
meeting_minutes.db
57+
58+
# Added by Task Master AI
59+
# Logs
60+
logs
61+
*.log
62+
dev-debug.log
63+
# Dependency directories
64+
node_modules/
65+
# Environment variables
66+
.env
67+
# Editor directories and files
68+
.idea
69+
.vscode
70+
*.suo
71+
*.ntvs*
72+
*.njsproj
73+
*.sln
74+
*.sw?
75+
experiments/
76+
.cursor/
77+
.claude/
78+
.superpowers/
79+
80+
public/
81+
82+
# Tauri / Rust
83+
/src-tauri/target/
84+
/src-tauri/target-*/
85+
/src-tauri/gen/
86+
87+
# Python
88+
__pycache__/
89+
*.py[cod]
90+
.python-version
91+
.venv/
92+
venv/
93+
94+
# Generated bundled ASR runtime. Built by scripts/ensure-asr-runtime.mjs.
95+
/runtime/asr/**
96+
!/runtime/asr/.gitkeep
97+
98+
# Local app data and generated artifacts
99+
*.sqlite
100+
*.sqlite3
101+
*.db
102+
/recordings/
103+
/normalized_audio/
104+
/transcripts/
105+
/summaries/
106+
/models/
107+
108+
# Bundles and generated frontend output
109+
/dist/
110+
*.dmg
111+
*.app

0 commit comments

Comments
 (0)