-
Notifications
You must be signed in to change notification settings - Fork 43
/
app.json
48 lines (48 loc) · 1.46 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
47
48
{
"name": "BigCommerce Sample App, Python",
"description": "Sample app for the BigCommerce app store. Handles installation flow and runs an API request, uses the response data to render an interface.",
"keywords": [
"bigcommerce",
"ecommerce",
"python",
"flask"
],
"repository": "https://github.com/bigcommerce/hello-world-app-python-flask",
"logo": "https://i.imgur.com/PEkdHpr.png",
"success_url": "/instructions",
"scripts": {
"postdeploy": "python -c 'from app import db; db.create_all()'"
},
"env": {
"SESSION_SECRET": {
"description": "Random string used to secure the flask session cookie.",
"generator": "secret"
},
"APP_URL": {
"description": "The public URL of your Heroku app.",
"value": "This will be replaced after deployment"
},
"DEBUG": {
"description": "Boolean used to put Flask, SQLAlchemy, and other addons into a verbose logging and debug mode. Leave it True for now, but be sure to set it to False for a production app release!",
"value": "True"
},
"APP_CLIENT_ID": {
"description": "Replace this with the BigCommerce Client ID",
"value": "Client ID"
},
"APP_CLIENT_SECRET": {
"description": "Replace this with the BigCommerce Client Secret",
"value": "Client Secret"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"image": "heroku/python",
"addons": [
"heroku-postgresql"
]
}