46 lines
575 B
Plaintext
46 lines
575 B
Plaintext
# SIBU Root .gitignore
|
|
|
|
# Python / FastAPI
|
|
**/__pycache__/
|
|
**/*.py[cod]
|
|
**/*$py.class
|
|
**/.pytest_cache/
|
|
**/*.venv
|
|
**/venv/
|
|
**/env/
|
|
**/.env
|
|
**/instance/
|
|
**/.pdm-python
|
|
**/.pdm-build/
|
|
**/.ruff_cache/
|
|
|
|
# Node / Frontend
|
|
**/node_modules/
|
|
**/dist/
|
|
**/dist-ssr/
|
|
**/*.local
|
|
**/npm-debug.log*
|
|
**/yarn-debug.log*
|
|
**/yarn-error.log*
|
|
**/pnpm-debug.log*
|
|
**/lerna-debug.log*
|
|
|
|
# OS / Editor
|
|
.DS_Store
|
|
Thumbs.db
|
|
.vscode/
|
|
!.vscode/extensions.json
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
|
|
# UV (Backend dependency manager)
|
|
backend/.python-version
|
|
backend/.uv
|
|
**/uploads
|
|
**/dev-dist
|
|
|