-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path.env.example
More file actions
34 lines (31 loc) · 1.54 KB
/
Copy path.env.example
File metadata and controls
34 lines (31 loc) · 1.54 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
# CMTrace Open — local environment template.
#
# Copy this file to `.env.local` (gitignored) and fill in real values.
# `scripts/build-mac-signed.sh` automatically sources `.env.local` from
# the repo root if it exists, so once filled in you can just run the
# script with no further setup.
#
# cp .env.example .env.local
# $EDITOR .env.local
# ./scripts/build-mac-signed.sh
# ── macOS code-signing identity (required for signed builds) ──────────────
# Find your identity with:
# security find-identity -v -p codesigning
# Leave this empty until you have a real identity: the build script checks
# for an empty value and prints exactly how to find yours. A placeholder
# here would pass that check and fail later inside codesign instead.
# APPLE_SIGNING_IDENTITY="Developer ID Application: Jane Doe (ABC1234567)"
APPLE_SIGNING_IDENTITY=
# ── Notarization: App Store Connect API key (preferred) ───────────────────
# Generate at https://appstoreconnect.apple.com/access/integrations/api
# (role: Developer). Download the .p8 once and store it somewhere private.
# Leave blank to skip notarization (build will sign but not notarize).
APPLE_API_KEY=
APPLE_API_ISSUER=
APPLE_API_KEY_PATH=
# ── Notarization: Apple ID + app-specific password (legacy fallback) ──────
# Only populate if you're not using the API key above. Generate the password
# at https://appleid.apple.com/account/manage → "App-Specific Passwords".
APPLE_ID=
APPLE_PASSWORD=
APPLE_TEAM_ID=