-
Notifications
You must be signed in to change notification settings - Fork 23
/
app.json
41 lines (41 loc) · 1.45 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
{
"name": "IAP Receipt Verifier",
"description": "A web app to verify App Store purchase receipts.",
"repository": "https://github.com/lionheart/in_app_purchase_receipt_verifier",
"keywords": ["python", "django", "app store"],
"env": {
"RECEIPT_VERIFICATION_ENVIRONMENT": {
"description": "The environment which to verify receipts. Can be 'production' or 'sandbox'.",
"value": "sandbox",
"required": true
},
"APP_SPECIFIC_SHARED_SECRET": {
"description": "Your app's shared secret from iTunes Connect (a hexadecimal string).",
"required": true
},
"BASE64_ENCODED_SIGNING_KEY": {
"description": "Optional, but required if you'd like to verify payloads end-to-end. See README for information on what to provide for this value.",
"required": false
},
"SENTRY_DSN": {
"description": "Optional. Your application's Sentry DSN, if application (e.g., 'https://123456:[email protected]/123456'). This is used for error reporting. If you don't know what this is, you can ignore it.",
"required": false
},
"DISABLE_COLLECTSTATIC": {
"description": "Must set this to 1. Don't edit this value.",
"value": "1",
"required": true
},
"SECRET_KEY": {
"description": "This should be set to a unique, unpredictable value.",
"required": true,
"generator": "secret"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
}
}