-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscript.json
More file actions
43 lines (43 loc) · 1.14 KB
/
script.json
File metadata and controls
43 lines (43 loc) · 1.14 KB
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
{
"language": "Meteor",
"envVars": [
{
"key": "APP_LOCATION",
"description": "The location of the Meteor app folder in the repository. Set \".\" for root",
"defaultValue": "."
},
{
"key": "ROOT_URL",
"description": "The URL that clients will be accessing your application with",
"defaultValue": "http://${app:name}.orionapps.org"
},
{
"key": "MONGO_URL",
"description": "URL for connecting to Mongo",
"defaultValue": "mongodb://localhost:27017/meteor"
},
{
"key": "MONGO_OPLOG_URL",
"description": "URL for connecting to Mongo with Oplog. Optional",
"defaultValue": "",
"optional": true
},
{
"key": "MAIL_URL",
"description": "How Meteor will send email, SMTP settings. Optional",
"defaultValue": "",
"optional": true
},
{
"key": "METEOR_SETTINGS",
"description": "Meteor settings JSON",
"defaultValue": "{}"
},
{
"key": "DOCKER_IMAGE",
"description":
"Choose a docker image to run your Meteor app. Leave blank for automatic detection",
"defaultValue": ""
}
]
}