-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder.yml
More file actions
74 lines (65 loc) · 1.81 KB
/
Copy pathelectron-builder.yml
File metadata and controls
74 lines (65 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# Electron Builder Configuration
# https://www.electron.build/configuration/configuration
appId: com.cosmicbytez.bc-container-manager
productName: BC Container Manager
copyright: Copyright © 2025 CosmicBytez
# Skip native module rebuilding (we don't use SSH features from dockerode)
npmRebuild: false
# Directories
directories:
output: dist7
buildResources: assets
# Files to include in the build
files:
- electron/**/*
- out/**/*
- assets/**/*
- scripts/**/*
- package.json
# Extra resources (not bundled, just copied)
extraResources:
- from: scripts/
to: scripts/
filter:
- "**/*"
- from: assets/
to: assets/
filter:
- "icon.png"
- "icon.ico"
# HOWTO documentation for RAG helper (offline AI fallback)
# Path is resolved on the Windows dev box where production builds run;
# assumes the CosmicBytez/{AI-Projects-Workspace/bc-docker-manager, AZU-VAULT}
# sibling layout. CI (windows-latest) checks out only bc-docker-manager and
# will skip this source silently.
- from: "../../AZU-VAULT/HOWTO's/CONTAINERS/"
to: HOWTO/CONTAINERS/
filter:
- "**/*.md"
# Windows configuration
win:
icon: assets/icon.ico
target:
- target: nsis
arch:
- x64
artifactName: ${productName}-Setup-${version}.${ext}
# Disable code signing (no certificate available)
signAndEditExecutable: false
# NSIS installer configuration
nsis:
oneClick: false
allowToChangeInstallationDirectory: true
createDesktopShortcut: true
createStartMenuShortcut: true
shortcutName: BC Container Manager
license: LICENSE
# Portable executable (no install needed)
portable:
artifactName: ${productName}-Portable-${version}.${ext}
# ASAR archive - bundle app files
asar: true
asarUnpack:
- node_modules/dockerode/**/*
- node_modules/@anthropic-ai/**/*
- scripts/**/*