Soumik Bose commited on
Commit
79a3e45
·
2 Parent(s): 8d66792 1481bc1

Merge branch 'main' of https://huggingface.co/spaces/xce009/ocr-api

Browse files
Files changed (1) hide show
  1. .gitignore +126 -0
.gitignore ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Environment Variables
2
+ .env
3
+ .env.local
4
+ .env.*.local
5
+
6
+ # Python
7
+ __pycache__/
8
+ *.py[cod]
9
+ *$py.class
10
+ *.so
11
+ .Python
12
+ build/
13
+ develop-eggs/
14
+ dist/
15
+ downloads/
16
+ eggs/
17
+ .eggs/
18
+ lib/
19
+ lib64/
20
+ parts/
21
+ sdist/
22
+ var/
23
+ wheels/
24
+ share/python-wheels/
25
+ *.egg-info/
26
+ .installed.cfg
27
+ *.egg
28
+ MANIFEST
29
+
30
+ # Virtual Environments
31
+ venv/
32
+ env/
33
+ ENV/
34
+ env.bak/
35
+ venv.bak/
36
+ .venv
37
+
38
+ # IDEs
39
+ .vscode/
40
+ .idea/
41
+ *.swp
42
+ *.swo
43
+ *~
44
+ .DS_Store
45
+
46
+ # Jupyter Notebook
47
+ .ipynb_checkpoints
48
+
49
+ # PyCharm
50
+ .idea/
51
+
52
+ # Testing
53
+ .pytest_cache/
54
+ .coverage
55
+ .coverage.*
56
+ htmlcov/
57
+ .tox/
58
+ .nox/
59
+ coverage.xml
60
+ *.cover
61
+ .hypothesis/
62
+
63
+ # Logs
64
+ *.log
65
+ logs/
66
+ *.log.*
67
+
68
+ # Temporary files
69
+ *.tmp
70
+ *.temp
71
+ temp/
72
+ tmp/
73
+ *.bak
74
+
75
+ # OCR Processing files
76
+ uploads/
77
+ processed/
78
+ output/
79
+ samples/
80
+ *.pdf
81
+ *.jpg
82
+ *.jpeg
83
+ *.png
84
+ *.bmp
85
+ *.webp
86
+ *.tiff
87
+
88
+ # Docker
89
+ *.env.docker
90
+ docker-compose.override.yml
91
+
92
+ # OS
93
+ Thumbs.db
94
+ .DS_Store
95
+ *.swp
96
+
97
+ # Database
98
+ *.db
99
+ *.sqlite
100
+ *.sqlite3
101
+
102
+ # Cache
103
+ .cache/
104
+ *.cache
105
+ __pycache__/
106
+ .mypy_cache/
107
+ .dmypy.json
108
+ dmypy.json
109
+
110
+ # Model files (if downloading OCR models)
111
+ *.onnx
112
+ models/
113
+ weights/
114
+
115
+ # Hugging Face cache
116
+ .huggingface/
117
+
118
+ # Node modules (if using any JS tooling)
119
+ node_modules/
120
+
121
+ # Secrets and certificates
122
+ *.pem
123
+ *.key
124
+ *.crt
125
+ secrets/
126
+ credentials/