- Aggiunge scaffold frontend Vue con UI base e build verso renderer - Introduce backend FastAPI con endpoint generazione e salvataggio JSON - Sposta i generatori in backend e aggiorna CLI main.py - Aggiorna README, requirements e .gitignore per artefatti e config - Configura Electron (main/preload) e script npm per dev/build
26 lines
355 B
Plaintext
26 lines
355 B
Plaintext
# Generated wallet files (contain private keys)
|
|
wallet*.json
|
|
dati_p2pk*.json
|
|
p2sh.json
|
|
|
|
# Virtual envs
|
|
venv/
|
|
|
|
# JSON files (default ignore)
|
|
*.json
|
|
|
|
# Keep essential config JSON tracked
|
|
!package.json
|
|
!package-lock.json
|
|
|
|
# Python caches/build
|
|
__pycache__/
|
|
*.pyc
|
|
backend/build/
|
|
backend/dist/
|
|
|
|
# Node/Electron outputs
|
|
node_modules/
|
|
desktop/renderer/
|
|
release/
|