**Motivations:** - Export Signet and mining wallet backups to git with only 2 versions kept - Document and add backup/restore scripts for signet and mining wallet **Correctifs:** - Backup-to-git uses SSH URL for passwordless cron; copy timestamped files only; prune to 2 versions; remove *-latest from backup repo **Evolutions:** - data/backup-to-git-cron.sh: daily export to git.4nkweb.com/4nk/backup - save-signet-datadir-backup.sh, restore-signet-from-backup.sh, export-mining-wallet.sh, import-mining-wallet.sh - features/backup-to-git-daily-cron.md, docs/MAINTENANCE.md backup section - .gitignore: data/backup-to-git.log **Pages affectées:** - .gitignore, data/backup-to-git-cron.sh, docs/MAINTENANCE.md, features/backup-to-git-daily-cron.md - save-signet-datadir-backup.sh, restore-signet-from-backup.sh, export-mining-wallet.sh, import-mining-wallet.sh - Plus autres fichiers modifiés ou non suivis déjà présents dans le working tree
22 lines
529 B
Plaintext
22 lines
529 B
Plaintext
# Bitcoin RPC Configuration (nœud local = même chaîne que Mempool sur la machine bitcoin)
|
|
BITCOIN_RPC_HOST=127.0.0.1
|
|
BITCOIN_RPC_PORT=38332
|
|
BITCOIN_RPC_USER=bitcoin
|
|
BITCOIN_RPC_PASSWORD=bitcoin
|
|
BITCOIN_RPC_TIMEOUT=30000
|
|
|
|
# Dashboard Configuration
|
|
DASHBOARD_PORT=3020
|
|
DASHBOARD_HOST=0.0.0.0
|
|
|
|
# API Anchor Configuration (pour les tests d'ancrage)
|
|
ANCHOR_API_URL=http://localhost:3010
|
|
ANCHOR_API_KEY=your-api-key-here
|
|
|
|
# API Faucet Configuration
|
|
FAUCET_API_URL=http://localhost:3021
|
|
|
|
# Logging
|
|
LOG_LEVEL=info
|
|
NODE_ENV=production
|