-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathperry.toml
More file actions
76 lines (67 loc) · 1.83 KB
/
Copy pathperry.toml
File metadata and controls
76 lines (67 loc) · 1.83 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
[android]
distribute = "playstore:production"
# Google Play service-account key for upload. Local override expected — the
# repo doesn't ship a real key. Set HONE_GOOGLE_PLAY_KEY env var or replace
# this path locally; do NOT commit a real key here.
google_play_key = ".perry/google-play-key.json"
key_alias = "key0"
keystore = "../android.keystore"
[build]
opt_level = 2
out_dir = "dist"
[i18n]
default_locale = "en"
locales = [
"en",
"de",
"ja",
"zh-Hans",
"es-MX",
"fr",
"pt",
"ko",
"it",
"tr",
"th",
"id",
"vi",
]
[ios]
bundle_id = "com.hone.ide"
# Apple Distribution cert + provisioning profile. Local override expected —
# the repo doesn't ship real certs. Drop your `.p12` and provisioning
# profile into `.perry/` (gitignored) or set HONE_APPLE_CERT_PATH /
# HONE_APPLE_PROFILE_PATH env vars for CI.
certificate = ".perry/distribution.p12"
distribute = "testflight"
encryption_exempt = true
provisioning_profile = ".perry/com_hone_ide.mobileprovision"
signing_identity = "Apple Distribution: Skelpo GmbH (K6UW5YV9F7)"
[linux]
format = "tarball"
[macos]
bundle_id = "com.hone.ide"
distribute = "both"
encryption_exempt = true
entitlements = [
"com.apple.security.app-sandbox",
"com.apple.security.network.client",
"com.apple.security.files.user-selected.read-write",
"com.apple.security.files.downloads.read-write",
]
notarize_signing_identity = "Developer ID Application: Skelpo GmbH"
signing_identity = "3rd Party Mac Developer Application: Skelpo GmbH (K6UW5YV9F7)"
[project]
build_number = 1
entry = "src/app.ts"
name = "Hone"
version = "0.1.0"
[project.icons]
source = "hone-icon.png"
[publish]
exclude = [
"tests",
"node_modules",
]
[windows]
gcloud_kms_key = "projects/skelpo/locations/europe-west3/keyRings/code-signing-eu/cryptoKeys/skelpo-codesign/cryptoKeyVersions/1"