forked from Autodesk-Forge/forge-rcdb.nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
38 lines (38 loc) · 1.1 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
{
"name": "forge-rcdb.nodejs",
"description": "Autodesk Forge - Responsive Connected Database",
"repository": "https://github.com/Autodesk-Forge/forge-rcdb.nodejs",
"logo": "https://github.com/Autodesk-Forge/forge-rcdb.nodejs/resources/img/forge.png",
"keywords": ["autodesk", "forge", "node", "express"],
"env": {
"NODE_ENV": {
"description": "Environment, defaulted to production",
"value": "production"
},
"NPM_CONFIG_PRODUCTION": {
"description": "This forces Heroku to install devDependencies, needed to build the App. Must be false!",
"value": "false"
},
"FORGE_CLIENT_ID": {
"description": "Your Forge Client ID API Key"
},
"FORGE_CLIENT_SECRET": {
"description": "Your Forge Client Secret API Key"
},
"RCDB_DBHOST": {
"description": "Database host url"
},
"RCDB_PORT": {
"description": "Database port"
},
"RCDB_DBNAME": {
"description": "Database name"
},
"RCDB_USER": {
"description": "Database username"
},
"RCDB_PASS": {
"description": "Database user password"
}
}
}