-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
26 lines (26 loc) · 1011 Bytes
/
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
{
"name": "CloudZoo Issuer Example",
"description": "A starting point for a third-party Cloud Zoo issuer",
"repository": "https://github.com/mcneel/cloudzoo-issuer",
"keywords": ["rhino3d", "cloudzoo", "license"],
"addons": ["heroku-postgresql"],
"env": {
"ISSUER_ID": {
"description": "You should have received this from McNeel (see https://www.rhino3d.com/go/cloudzoo/register-issuer)."
},
"ISSUER_SECRET": {
"description": "You should have received this from McNeel (see https://www.rhino3d.com/go/cloudzoo/register-issuer)."
},
"ISSUER_NAME": {
"description": "The name of your company.",
"value": "Dolfinito®"
},
"ISSUER_SUPPORT_URL": {
"description": "The URL that customers should go to for support.",
"value": "https://www.dolfinito.com/support"
}
},
"scripts": {
"postdeploy": "python -c \"from app import db; db.create_all()\""
}
}