forked from bigcommerce/sample-app-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
30 lines (30 loc) · 1.09 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
{
"name": "BigCommerce Sample App",
"description": "A sample NodeJS app installable on BigCommerce stores",
"repository": "https://github.com/bigcommerce/sample-app-nodejs",
"keywords": ["Node", "Heroku"],
"addons": ["cleardb:ignite"],
"env": {
"CLIENT_ID": {
"description": "The client id of your app, provided by the BigCommerce developer portal."
},
"CLIENT_SECRET":{
"description": "The client secret of your app, provided by the BigCommerce developer portal."
},
"AUTH_CALLBACK":{
"description": "The fully qualified authentication endpoint provided by this app. Replace the app name with the app name chosen above.",
"value": "https://<APP NAME>.herokuapp.com/api/auth"
},
"DB_TYPE":{
"description": "Which type of database we are using. Options are 'mysql' or 'firebase'. Can safely leave unchanged.",
"value": "mysql"
},
"JWT_KEY":{
"description": "Key the app will use for signing JWT. Can safely leave unchanged.",
"generator": "secret"
}
},
"scripts": {
"postdeploy": "npm run db:setup"
}
}