forked from yhat/electron-release-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
33 lines (33 loc) · 826 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
28
29
30
31
32
33
{
"name": "electron-release-manager",
"description": "A way to manage electron apps on s3.",
"keywords": [
"electron",
"s3",
"squirrel",
"release"
],
"repository": "https://github.com/yhat/electron-release-manager/",
"env": {
"APP_NAME": {
"description": "Name of the app you're releasing.",
"value": "my-cool-app",
"required": true
},
"AWS_ACCESS_KEY_ID": {
"description": "Your AWS access key.",
"value": "ABCD12345678",
"required": true
},
"AWS_SECRET_ACCESS_KEY": {
"description": "Your AWS secret key.",
"value": "AQWEIFOGSDFOW82392/ER9",
"required": true
},
"BUCKET": {
"description": "s3 bucket where your apps are distributed.",
"value": "s3://<bucket-name>/",
"required": true
}
}
}