-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
23 lines (23 loc) · 1.05 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
{
"name": "ZipStreamer",
"description": "A small server which can combine any number of URLs into a zip file, and stream it on the fly to a client.",
"repository": "https://github.com/scosman/zipstreamer",
"env": {
"ZS_URL_PREFIX": {
"description": "[OPTIONAL] if set, requires that the URL of files included in the zip start with this prefix. Useful to preventing others from using your server to serve their files.",
"required": false
},
"ZS_COMPRESSION": {
"description": "[OPTIONAL] if set to 'DEFLATE', will enable zip compression on output files. WARNING - enabling compression uses CPU, and will greatly reduce throughput of server",
"required": false
},
"ZS_LISTFILE_URL_PREFIX": {
"description": "[OPTIONAL] The prefix of the JSON zip descriptor URL for `GET /download` endpoint, used in conjunction with the `zsid` query parameter. See docs for `GET /download` for details",
"required": false
}
},
"keywords": ["zip", "gzip", "streaming", "golang"],
"options": {
"concurrency": 500
}
}