-
Notifications
You must be signed in to change notification settings - Fork 191
/
app.json
46 lines (46 loc) · 1.87 KB
/
app.json
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
{
"name": "TestFlight boarding",
"description": "The easiest way to invite your TestFlight beta testers. The App Name is the name of the Heroku application, not the name of your app.",
"repository": "https://github.com/fastlane/boarding",
"logo": "https://github.com/fastlane/boarding/raw/master/assets/BoardingIcon.png",
"keywords": ["Testflight", "Spaceship", "fastlane", "invite"],
"website": "https://github.com/fastlane/boarding",
"env": {
"ITC_USER": {
"description": "Your iTunes Connect username",
"required": true
},
"ITC_PASSWORD": {
"description": "Your iTunes Connect password",
"required": true
},
"ITC_APP_ID": {
"description": "The App ID or App Identifier (Bundle Identifier) of your app from iTunes Connect, to which the tester will be invited.",
"required": true
},
"FASTLANE_ITC_TEAM_NAME": {
"description": "Optional: If you're in multiple teams, enter the name of your iTC team here. Make sure it matches.",
"required": false
},
"FASTLANE_SESSION": {
"description": "Optional: You need to provide a pregenerated session via `fastlane spaceauth` if you have 2-factor authentication enabled and want to use any actions that communicates with App Store Connect.",
"required": false
},
"ITC_APP_TESTER_GROUPS": {
"description": "Optional: The groups you want the invited to be placed in",
"required": false
},
"ITC_TOKEN": {
"description": "Optional: Set a password to protect your website from random people signing up.",
"required": false
},
"GA_PROPERTY_ID": {
"description": "Optional: Configure Google Analytics to track visitors on your website.",
"required": false
},
"IMPRINT_URL": {
"description": "Optional: URL to imprint. The link is shown on the invite page.",
"required": false
}
}
}