mattkevan commited on
Commit
b36ef0e
·
1 Parent(s): af4851b

Add gitignore

Browse files
.gitignore ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python bytecode and caches
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # Virtual environments
7
+ .venv/
8
+ venv/
9
+ env/
10
+ ENV/
11
+
12
+ # Test, type-check, and tool caches
13
+ .pytest_cache/
14
+ .mypy_cache/
15
+ .ruff_cache/
16
+ .pyre/
17
+ .hypothesis/
18
+ .coverage
19
+ .coverage.*
20
+ htmlcov/
21
+
22
+ # Build and packaging artifacts
23
+ build/
24
+ dist/
25
+ site/
26
+ *.egg-info/
27
+ .eggs/
28
+ pip-wheel-metadata/
29
+
30
+ # Local environment and secrets
31
+ .env
32
+ .env.*
33
+ *.local
34
+
35
+ # Runtime, logs, and local scratch files
36
+ *.log
37
+ tmp/
38
+ temp/
39
+
40
+ # Optional repo-local render/session outputs
41
+ uploads/
42
+ previews/
43
+ renders/
44
+ exports/
45
+
46
+ # Frontend dependency caches
47
+ node_modules/
48
+
49
+ # Editor and OS files
50
+ .DS_Store
51
+ .idea/
52
+ .vscode/
backend/__pycache__/__init__.cpython-313.pyc DELETED
Binary file (159 Bytes)
 
backend/__pycache__/config.cpython-313.pyc DELETED
Binary file (464 Bytes)
 
backend/__pycache__/epub.cpython-313.pyc DELETED
Binary file (8.59 kB)
 
backend/__pycache__/export.cpython-313.pyc DELETED
Binary file (8.31 kB)
 
backend/__pycache__/input_files.cpython-313.pyc DELETED
Binary file (2.02 kB)
 
backend/__pycache__/omnivoice_adapter.cpython-313.pyc DELETED
Binary file (5.73 kB)
 
backend/__pycache__/render_pipeline.cpython-313.pyc DELETED
Binary file (5.32 kB)
 
backend/__pycache__/session_store.cpython-313.pyc DELETED
Binary file (4.21 kB)
 
backend/__pycache__/types.cpython-313.pyc DELETED
Binary file (3.47 kB)