Motivations: - Fix 502 en prod via build multi-pages et routes stables - Stabilize IndexedDB (création stores) et faucet obligatoire - Déploiement robuste: port 3004 garanti et logs Modifications: - Vite: inputs multi-pages, alias npm deploy:front - Router/redirects: chemins - Pages setup: URLs corrigées, suppression log faucet disabled - DB: bump version à 5, upgrade crée stores manquants - Script: scripts/deploy_front.sh (kill 3004, clean, build, start bg) - Lint: perf monitor param non utilisé, warnings corrigés Page affectées: - vite.config.ts, src/router.ts - src/pages/* (home, pairing, block-sync, wallet-setup, security-setup) - src/services/* (database-config, performance-monitor) - package.json, scripts/deploy_front.sh
102 lines
1.5 KiB
Plaintext
Executable File
102 lines
1.5 KiB
Plaintext
Executable File
# ----------------------------
|
|
# 🦀 Rust
|
|
# ----------------------------
|
|
target/
|
|
Cargo.lock
|
|
*.rs.bk
|
|
**/*.rlib
|
|
|
|
# ----------------------------
|
|
# 🧰 Node / Frontend
|
|
# ----------------------------
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
.cache/
|
|
.next/
|
|
out/
|
|
.tmp/
|
|
temp/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
package-lock.json
|
|
yarn.lock
|
|
pnpm-lock.yaml
|
|
|
|
# ----------------------------
|
|
# 🧱 IDE / Éditeurs
|
|
# ----------------------------
|
|
.idea/
|
|
*.iml
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|
|
*.DS_Store
|
|
Thumbs.db
|
|
|
|
# ----------------------------
|
|
# ⚙️ Environnements / Secrets
|
|
# ----------------------------
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.production.local
|
|
.env.test.local
|
|
*.pem
|
|
*.crt
|
|
*.key
|
|
|
|
# ----------------------------
|
|
# 🌐 SSL / Certificats
|
|
# ----------------------------
|
|
public/ssl/
|
|
certs/
|
|
keys/
|
|
|
|
# ----------------------------
|
|
# 📦 Compilations WebAssembly
|
|
# ----------------------------
|
|
wasm-pack.log
|
|
*.wasm
|
|
|
|
# ----------------------------
|
|
# 🧪 Tests / Coverage
|
|
# ----------------------------
|
|
coverage/
|
|
lcov-report/
|
|
.nyc_output/
|
|
jest-cache/
|
|
jest-results.json
|
|
|
|
# ----------------------------
|
|
# 🧍 Runtime / OS / Divers
|
|
# ----------------------------
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
*.bak
|
|
*.orig
|
|
*.rej
|
|
|
|
# ----------------------------
|
|
# 🧠 Logs / Debug / Dump
|
|
# ----------------------------
|
|
*.log
|
|
*.stackdump
|
|
*.dmp
|
|
debug.log
|
|
error.log
|
|
|
|
# ----------------------------
|
|
# 🚀 Deploy / Production builds
|
|
# ----------------------------
|
|
.vercel/
|
|
.netlify/
|
|
firebase/
|
|
functions/lib/
|