first
This commit is contained in:
92
.gitignore
vendored
Normal file
92
.gitignore
vendored
Normal file
@@ -0,0 +1,92 @@
|
||||
# Tool_OCR - Git Ignore Configuration
|
||||
|
||||
# ===== Python =====
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.so
|
||||
.Python
|
||||
build/
|
||||
develop-eggs/
|
||||
dist/
|
||||
downloads/
|
||||
eggs/
|
||||
.eggs/
|
||||
lib/
|
||||
lib64/
|
||||
parts/
|
||||
sdist/
|
||||
var/
|
||||
wheels/
|
||||
*.egg-info/
|
||||
.installed.cfg
|
||||
*.egg
|
||||
|
||||
# ===== Virtual Environments =====
|
||||
venv/
|
||||
ENV/
|
||||
env/
|
||||
.venv
|
||||
|
||||
# ===== Conda =====
|
||||
.conda/
|
||||
|
||||
# ===== IDE =====
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
.DS_Store
|
||||
|
||||
# ===== Environment Variables =====
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
||||
# ===== Logs =====
|
||||
logs/
|
||||
*.log
|
||||
|
||||
# ===== Uploads and Temporary Files =====
|
||||
uploads/
|
||||
storage/
|
||||
temp/
|
||||
|
||||
# ===== Models =====
|
||||
models/paddleocr/*
|
||||
models/argostranslate/*
|
||||
!models/.gitkeep
|
||||
|
||||
# ===== Database =====
|
||||
*.db
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
|
||||
# ===== Testing =====
|
||||
.pytest_cache/
|
||||
.coverage
|
||||
htmlcov/
|
||||
.tox/
|
||||
|
||||
# ===== Frontend =====
|
||||
node_modules/
|
||||
dist/
|
||||
.cache/
|
||||
.parcel-cache/
|
||||
.next/
|
||||
out/
|
||||
build/
|
||||
|
||||
# ===== macOS =====
|
||||
.DS_Store
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
|
||||
# ===== Linux =====
|
||||
.directory
|
||||
|
||||
# ===== Windows =====
|
||||
Thumbs.db
|
||||
ehthumbs.db
|
||||
Desktop.ini
|
||||
Reference in New Issue
Block a user