-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathLocal.xcconfig.example
More file actions
38 lines (34 loc) · 1.93 KB
/
Copy pathLocal.xcconfig.example
File metadata and controls
38 lines (34 loc) · 1.93 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
// Copy this file to Local.xcconfig and fill in your Apple Development Team ID.
// Local.xcconfig is gitignored and will not be committed.
#include "Version.xcconfig"
DEVELOPMENT_TEAM = YOUR_TEAM_ID_HERE
SENTRY_DSN = YOUR_SENTRY_DSN_HERE
POSTHOG_API_KEY = YOUR_POSTHOG_API_KEY_HERE
// Sign-in for the ArcBox platform, via the Better Auth device-authorization
// grant. The issuer is the Better Auth base URL; its device endpoints and
// approval page live under it (see AuthClientConfiguration.swift in
// Packages/ArcBoxAuth). Leave the placeholders to run with sign-in
// unconfigured. The variable names predate the device-grant flow and stay
// stable so CI and release configuration keep working. The $() below is
// required: xcconfig treats "//" as a comment even inside values, so an
// empty expansion splits the slashes; the resolved value is a normal URL.
// Production (what release builds ship with, see release.yml):
// OIDC_ISSUER_URL = https:/$()/auth.arcbox.dev/api/auth
// OIDC_CLIENT_ID = arcbox-desktop
OIDC_ISSUER_URL = YOUR_OIDC_ISSUER_URL_HERE
OIDC_CLIENT_ID = YOUR_OIDC_CLIENT_ID_HERE
// Fleet Platform REST API used to list workspaces and issue enrollment tokens.
// For a local Platform stack, use http:/$()/localhost:2801.
FLEET_PLATFORM_BASE_URL = https:/$()/api.arcbox.dev
// Optional local-only app identity overrides. Uncomment to use the shared dev preset.
// ARCBOX_PRODUCT_BUNDLE_IDENTIFIER = $(ARCBOX_DEV_PRODUCT_BUNDLE_IDENTIFIER)
// ARCBOX_PRODUCT_NAME = $(ARCBOX_DEV_PRODUCT_NAME)
// ARCBOX_APP_DISPLAY_NAME = $(ARCBOX_DEV_APP_DISPLAY_NAME)
// Full Xcode Run debugging. The executable remains "ArcBox" because the daemon
// uses that name to locate the outer app bundle.
// ARCBOX_PROFILE = development
// ARCBOX_PRODUCT_BUNDLE_IDENTIFIER = $(ARCBOX_DEV_PRODUCT_BUNDLE_IDENTIFIER)
// ARCBOX_PRODUCT_NAME = ArcBox
// ARCBOX_APP_DISPLAY_NAME = $(ARCBOX_DEV_APP_DISPLAY_NAME)
// SKIP_RUST_BUILD = 0
// ARCBOX_STAGE_RESOURCES = 1