Files
ProxmoxVE-Local/.gitignore
CanbiZ (MickLesk) e2a950da58 feat: cache logos locally, show config_path, rename Sync button (#511)
- logoCacheService.ts: download script logos to public/logos/ for local serving
- cache-logos.ts: build-time script caching 500+ logos from PocketBase
- scripts.ts router: resolve local logo paths, resyncScripts now caches logos
- autoSyncService.js: cache logos during background auto-sync
- ScriptDetailModal: show config_path per install method
- ResyncButton: renamed 'Sync Json Files' to 'Sync Scripts'
- GeneralSettingsModal: updated auto-sync description text
- .gitignore: ignore public/logos/ and data/*.db
2026-03-17 16:35:03 +01:00

63 lines
827 B
Plaintext

# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
.cursorignore
# dependencies
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# database
/prisma/db.sqlite
/prisma/db.sqlite-journal
db.sqlite
data/*.db
# prisma generated client
/prisma/generated/
# ssh keys (sensitive)
data/ssh-keys/
# next.js
/.next/
/out/
next-env.d.ts
# cached logos (downloaded at runtime)
/public/logos/
# production
/build
# misc
.DS_Store
*.pem
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
update.log
server.log
# local env files
# do not commit any .env files to git, except for the .env.example file. https://create.t3.gg/en/usage/env-variables#using-environment-variables
.env
.env*.local
# vercel
.vercel
# typescript
*.tsbuildinfo
# idea files
.idea
/generated/prisma