-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathapp.json
24 lines (24 loc) · 1.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
{
"name": "SamFetch",
"description": "A Web API to download firmwares from Samsung servers without any restriction.",
"website": "https://ysfchn.com",
"repository": "https://github.com/ysfchn/SamFetch",
"keywords": [ "samsung", "firmware", "heroku", "sanic", "python", "python3", "kies", "samsung-firmware" ],
"env": {
"SAMFETCH_HIDE_TEXT": {
"description": "Only 0 or 1. Set the value to 1 if you don't want the help text.",
"value": "0",
"required": false
},
"SAMFETCH_ALLOW_ORIGIN": {
"description": "Sets the \"Access-Control-Allow-Origin\" header value. Settings this to \"*\" (wildcard) allows all domains to access this SamFetch instance. Default is set to \"*\".",
"value": "*",
"required": false
},
"SAMFETCH_CHUNK_SIZE": {
"description": "Specifies how many bytes must read in a single iteration when downloading the firmware. Default is set to 1485760 (1 megabytes)",
"value": "1485760",
"required": false
}
}
}