-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
64 lines (64 loc) · 2.08 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "Docksal Sandbox API",
"description": "Let People Interact with Remote Docksal Server",
"logo": "https://docksal.io/img/docksald.png",
"repository": "https://github.com/sean-e-dietrich/docksal-sandboxes-api",
"image": "heroku/nodejs",
"keywords": ["node", "docksal"],
"scripts": {
"postdeploy": "npm install"
},
"env": {
"BUILD_DIRECTORY": {
"description": "The directory location on the remote server where the repo should be built.",
"required": true
},
"DOCKSAL_DOMAIN": {
"description": "The domain name to use for the new docksal instances. If one is not configured you can use the IP.xip.io.",
"required": true
},
"DOCKSAL_REMOTE_HOST": {
"description": "The hostname/ip of the remote server.",
"required": true
},
"DOCKSAL_REMOTE_PORT": {
"description": "The SSH Port used for authentication.",
"value": "22",
"required": true
},
"DOCKSAL_REMOTE_USER": {
"description": "The SSH user's account that has access to run the fin command.",
"required": true
},
"DOCKSAL_REMOTE_KEY": {
"description": "The Public SSH Key for the remote user.",
"required": true
},
"SLACK_URL": {
"description": "The Slack Incoming Webhook URL used for posting."
},
"SLACK_USER": {
"description": "The Slack User account to post messages as.",
"value": "CI Agent"
},
"SLACK_CHANNEL": {
"description": "The Slack Channel to post messages to."
},
"SLACK_ICON": {
"description": "The Slack Icon to use for messages.",
"value": ":computer:"
},
"GITHUB_SECRET": {
"description": "The Github Webhook Secret."
},
"GITHUB_TOKEN": {
"description": "A Github Token that has access to the repositories and can post to the Pull Requests."
},
"BITBUCKET_USER": {
"description": "The Bitbucket Username that has access to the repositories."
},
"BITBUCKET_PASS": {
"description": "The Bitbucket Username's Password. Use an app password instead of the account password."
}
}
}