Evgeny Naumov commited on
Commit
9a8b1ad
·
1 Parent(s): 875831e

Add async transcription support with progress tracking and 1-hour timeouts

Browse files
Files changed (1) hide show
  1. .gitignore +79 -20
.gitignore CHANGED
@@ -1,24 +1,83 @@
1
- # Logs
2
- logs
3
- *.log
4
  npm-debug.log*
5
  yarn-debug.log*
6
  yarn-error.log*
7
- pnpm-debug.log*
8
- lerna-debug.log*
9
-
10
- node_modules
11
- dist
12
- dist-ssr
13
- *.local
14
-
15
- # Editor directories and files
16
- .vscode/*
17
- !.vscode/extensions.json
18
- .idea
 
 
 
 
 
 
 
19
  .DS_Store
20
- *.suo
21
- *.ntvs*
22
- *.njsproj
23
- *.sln
24
- *.sw?
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Dependencies
2
+ node_modules/
 
3
  npm-debug.log*
4
  yarn-debug.log*
5
  yarn-error.log*
6
+
7
+ # Build outputs
8
+ dist/
9
+ build/
10
+
11
+ # Environment variables
12
+ .env
13
+ .env.local
14
+ .env.development.local
15
+ .env.test.local
16
+ .env.production.local
17
+
18
+ # IDE files
19
+ .vscode/
20
+ .idea/
21
+ *.swp
22
+ *.swo
23
+
24
+ # OS files
25
  .DS_Store
26
+ .DS_Store?
27
+ ._*
28
+ .Spotlight-V100
29
+ .Trashes
30
+ ehthumbs.db
31
+ Thumbs.db
32
+
33
+ # Logs
34
+ logs
35
+ *.log
36
+
37
+ # Runtime data
38
+ pids
39
+ *.pid
40
+ *.seed
41
+ *.pid.lock
42
+
43
+ # Coverage directory used by tools like istanbul
44
+ coverage/
45
+
46
+ # Temporary folders
47
+ tmp/
48
+ temp/
49
+
50
+ # Server uploads
51
+ server/uploads/
52
+
53
+ # Python
54
+ __pycache__/
55
+ *.py[cod]
56
+ *$py.class
57
+ *.so
58
+ .Python
59
+ env/
60
+ venv/
61
+ ENV/
62
+ env.bak/
63
+ venv.bak/
64
+
65
+ # Jupyter Notebook
66
+ .ipynb_checkpoints
67
+
68
+ # pyenv
69
+ .python-version
70
+
71
+ # celery beat schedule file
72
+ celerybeat-schedule
73
+
74
+ # SageMath parsed files
75
+ *.sage.py
76
+
77
+ # dotenv
78
+ .env
79
+
80
+ # mypy
81
+ .mypy_cache/
82
+ .dmypy.json
83
+ dmypy.json