**Motivations :** - document and enforce the secure websocket endpoint for the relay - streamline wallet setup flow without manual blockers **Modifications :** - update docs and service bootstrap logic to rely on VITE_BOOTSTRAPURL with explicit /ws suffix - clean wallet setup and block sync pages to run automatically without continue buttons - refresh shared styles and services to match the new initialization path and logging adjustments **Page affectées :** - docs/INTEGRATION.md - src/services/service.ts - src/pages/wallet-setup/wallet-setup.*
103 lines
1.5 KiB
Plaintext
Executable File
103 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/
|
|
sdk_relay
|
|
sdk_client |