forked from sebbacon/vatreturn
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
27 lines (27 loc) · 855 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
27
{
"name": "CSV to HMRC VAT return",
"description": "A simple system for submitting VAT returns",
"keywords": [
"oauth"
],
"website": "https://github.com/pubmania/vatreturn",
"repository": "https://github.com/pubmania/vatreturn",
"env": {
"HMRC_API_HOST": {
"description": "HMRC api host",
"value": "https://test-api.service.hmrc.gov.uk/"
},
"HMRC_OAUTH_CLIENT_ID": {
"description": "The OAuth client ID for your application, assigned by HMRC",
"value": "client-id-goes-here"
},
"HMRC_OAUTH_CLIENT_SECRET": {
"description": "The OAuth client secret for your application, assigned by HMRC",
"value": "client-secret-goes-here"
},
"FLASK_SECRET_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
}
}
}