-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder.yml
More file actions
84 lines (77 loc) · 2.31 KB
/
Copy pathelectron-builder.yml
File metadata and controls
84 lines (77 loc) · 2.31 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
75
76
77
78
79
80
81
82
83
84
appId: dev.pinkpixel.domainatrix
productName: Domainatrix
copyright: "Copyright © 2026 Pink Pixel"
directories:
output: dist/electron
buildResources: build
# Files to bundle into the app package.
# We ship the Next.js standalone server, the static assets, and the drizzle migrations.
files:
- electron/**/*
- "!node_modules/**/*"
# Extra resources copied alongside the app resources (accessible via process.resourcesPath).
# The standalone server, public statics, and migrations land here.
extraResources:
- from: ".next/standalone"
to: "app"
filter:
- "**/*"
- from: ".next/standalone/node_modules"
to: "app/node_modules"
filter:
- "**/*"
- from: ".next/static"
to: "app/.next/static"
filter:
- "**/*"
- from: "public"
to: "app/public"
filter:
- "**/*"
- from: "drizzle"
to: "drizzle"
filter:
- "**/*"
- from: "build/icons"
to: "icons"
filter:
- "**/*"
# ── Linux ─────────────────────────────────────────────────────────────────────
linux:
icon: build/icons/linux
category: Utility
syncDesktopName: true
synopsis: Domain portfolio manager and monitor
description: >
Domainatrix is a self-hosted domain management tool. Track WHOIS data,
DNS records, SSL certificates, uptime, and expiry for your entire domain
portfolio from a single clean interface.
target:
- target: AppImage
arch:
- x64
- target: deb
arch:
- x64
- target: rpm
arch:
- x64
# ── Windows ───────────────────────────────────────────────────────────────────
win:
icon: build/icons/win/icon.ico
target:
- target: nsis
arch:
- x64
nsis:
oneClick: false
allowToChangeInstallationDirectory: true
createDesktopShortcut: true
createStartMenuShortcut: true
shortcutName: Domainatrix
# ── macOS (not a current target, included for future reference) ───────────────
# mac:
# icon: build/icons/mac/icon.icns
# target:
# - target: dmg
# arch: [x64, arm64]