Files
easy-wallet/.gitignore
Davide Grilli 0a81f0db23 feat(linux): bundle Python CLI and fix Electron packaged build
- contrib/linux/Dockerfile: add libpython3.11 + PyInstaller to build
  standalone cli binary; fix venv isolation via .dockerignore
- frontend/electron/main.cjs: use bundled cli binary in prod via
  process.resourcesPath, fallback to venv/python3 in dev
- frontend/package.json: add extraResources for cli binary,
  set output dir to release/
- frontend/vite.config.js: set base './' for file:// protocol in prod
- .dockerignore: exclude venv/, node_modules/, dist/, .git/
- .gitignore: ignore release/ output directories
2026-03-10 09:00:27 +01:00

25 lines
337 B
Plaintext

# Python virtual environments
venv/
.venv/
env/
ENV/
# Python cache
__pycache__/
*.pyc
*.pyo
# Generated wallet JSON files
*.json
!package.json
!package-lock.json
!frontend/package.json
!frontend/package-lock.json
# Frontend build output and dependencies
node_modules/
frontend/node_modules/
frontend/dist/
frontend/release/
release/