forked from cameroncooke/AXe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (28 loc) · 1.32 KB
/
Copy path.env.example
File metadata and controls
31 lines (28 loc) · 1.32 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
# AXe local build configuration
#
# Copy this file to `.env` and adjust the values for your machine:
#
# cp .env.example .env
#
# `.env` is git-ignored and is loaded automatically by scripts/build.sh.
# Anything already set in your shell environment takes precedence over this file.
# --- Code signing ---
# The signing identity used by scripts/build.sh. List available identities with:
#
# security find-identity -v -p codesigning
#
# Use a "Developer ID Application: ... (TEAMID)" identity to produce notarizable
# release builds (the default `build` command). An "Apple Development: ..."
# identity only works for local `dev` builds — it cannot be notarized.
AXE_CODESIGN_IDENTITY=Developer ID Application: Your Name (TEAMID)
# --- Notarization (only needed for the full release `build`/`notarize`) ---
# App Store Connect API key used by notarytool. The .p8 private key lives in
# ./keys (git-ignored); the key ID and issuer ID come from App Store Connect
# under Users and Access > Integrations > App Store Connect API.
NOTARIZATION_API_KEY_PATH=./keys/AuthKey_XXXXXXXXXX.p8
NOTARIZATION_KEY_ID=XXXXXXXXXX
NOTARIZATION_ISSUER_ID=00000000-0000-0000-0000-000000000000
# --- Build locations (optional; defaults shown) ---
# IDB_CHECKOUT_DIR=./idb_checkout
# BUILD_OUTPUT_DIR=./build_products
# DERIVED_DATA_PATH=./build_derived_data