first commit
This commit is contained in:
102
.gitignore
vendored
102
.gitignore
vendored
@@ -1,54 +1,68 @@
|
||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.so
|
||||
.Python
|
||||
env/
|
||||
venv/
|
||||
ENV/
|
||||
build/
|
||||
develop-eggs/
|
||||
dist/
|
||||
downloads/
|
||||
eggs/
|
||||
.eggs/
|
||||
lib/
|
||||
lib64/
|
||||
parts/
|
||||
sdist/
|
||||
var/
|
||||
wheels/
|
||||
*.egg-info/
|
||||
.installed.cfg
|
||||
*.egg
|
||||
|
||||
# dependencies
|
||||
node_modules
|
||||
/.pnp
|
||||
.pnp.js
|
||||
# Virtual Environment
|
||||
.env
|
||||
.venv
|
||||
|
||||
# testing
|
||||
/coverage
|
||||
# Jupyter Notebook
|
||||
.ipynb_checkpoints
|
||||
|
||||
# production
|
||||
/build
|
||||
dist
|
||||
# PyCharm
|
||||
.idea/
|
||||
|
||||
# misc
|
||||
# VS Code
|
||||
.vscode/
|
||||
*.code-workspace
|
||||
|
||||
# macOS
|
||||
.DS_Store
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
# YOLO specific
|
||||
runs/*
|
||||
!runs/.gitkeep
|
||||
results/*
|
||||
!results/.gitkeep
|
||||
|
||||
# Editor directories and files
|
||||
.idea
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
# Preprocessed data (temporary)
|
||||
*-processed/
|
||||
*-processed-*/
|
||||
|
||||
# mockm
|
||||
httpData
|
||||
# Model weights (except best models)
|
||||
yolov8*.pt
|
||||
!yolov8n.pt
|
||||
|
||||
public/upload/**
|
||||
!public/upload/*.gitkeep
|
||||
.history
|
||||
# Temporary files
|
||||
*.log
|
||||
*.tmp
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# Package manager lock file
|
||||
package-lock.json
|
||||
yarn.lock
|
||||
# pnpm-lock.yaml
|
||||
auto-imports.d.ts
|
||||
components.d.ts
|
||||
|
||||
.wxt
|
||||
.output
|
||||
web-ext.config.ts
|
||||
.wrangler
|
||||
|
||||
# vite-plugin-pwa dev output
|
||||
dev-dist
|
||||
# Test outputs
|
||||
test_output/
|
||||
temp/
|
||||
|
||||
Reference in New Issue
Block a user