This repository has been archived by the owner on Jul 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
app.json
44 lines (44 loc) · 1.57 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
{
"name": "Fidor API Demo",
"description": "This application demonstrates the capabilities of Fidor Bank API powered by the `fidor_api` ruby library.",
"repository": "https://github.com/fidor/fidor_api_demo",
"keywords": ["fidor", "api", "demo", "rails"],
"env": {
"FIDOR_API_CALLBACK": {
"description": "The customer is redirected back to this URL during the oAuth flow",
"value": "changeme"
},
"FIDOR_API_CLIENT_ID": {
"description": "The unique ID assigned to your application by fidor",
"value": "changeme"
},
"FIDOR_API_CLIENT_SECRET": {
"description": "The secret assigned to your application by fidor",
"value": "changeme"
},
"FIDOR_API_LOGGING": {
"description": "Whether the `fidor_api` gem should log all requests done against the Fidor API",
"value": "changeme"
},
"FIDOR_API_ENVIRONMENT": {
"description": "The API environment which the `fidor_api` gem should use",
"value": "FidorApi::Environment::FidorDE::Sandbox"
},
"RAILS_ENV": {
"description": "Runs the rails application in production mode",
"value": "production"
},
"RAILS_LOG_TO_STDOUT": {
"description": "Tells rails to log to STDOUT instead of a local logfile",
"value": "true"
},
"RAILS_SERVE_STATIC_FILES": {
"description": "Tells rails to service static files by the application server",
"value": "true"
},
"SECRET_KEY_BASE": {
"description": "A secret key used for different encryptions and checksums in rails",
"generator": "secret"
}
}
}