You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-7Lines changed: 9 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -131,26 +131,28 @@ Before packaging, fetch `VICTORIA.md` from its private repository and place it i
131
131
132
132
The script uses `uvx pyinstaller`, so no `pip install` is required. The bundle will be created at `dist/Victoria.app`. It bundles `CRUSH.md`, `VICTORIA.md`, `crush.template.json`, `snowflake.mcp.json`, and `.crushignore`for runtime reference.
133
133
134
-
2. Sign the bundle so macOS will load the bundled Python framework:
134
+
2. Sign the bundle with your Developer ID certificate so macOS will load the bundled Python framework:
codesign --force --deep --options runtime --sign "Developer ID Application: Your Name (TEAMID)" dist/Victoria.app
138
138
```
139
139
140
-
Replace `-` with your Developer ID certificate when distributing outside your machine. Without this step, launching the app may fail with a "different Team IDs" error.
140
+
A Developer ID certificate is issued through the paid [Apple Developer Program](https://developer.apple.com/programs/). After enrolling, create a "Developer ID Application"certificate in the developer portal and use it in the command above. Without a valid signature, launching the app may fail with a "different Team IDs" error or trigger Gatekeeper warnings.
141
141
142
-
3. Share the app internally by either wrapping it in a DMG or zipping the bundle:
142
+
3. Share the signed app by wrapping it in a DMG or zipping the bundle, then notarize the archive for distribution:
143
143
144
-
***DMG (polished drag-and-drop):** NOTE: replace "-" with your Developer ID if available
0 commit comments