-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathapp.json
64 lines (64 loc) · 1.73 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": "meteor-files-website",
"version": "1.16.2",
"description": "Upload files with the speed of Meteor. Application build on top of ostrio:files package and meteor.js",
"repository": "https://github.com/veliovgroup/meteor-files-website",
"website": "https://github.com/veliovgroup/meteor-files-website",
"logo": "https://raw.githubusercontent.com/veliovgroup/Meteor-Files/master/logo.png",
"scripts": {
"start": "node main.js"
},
"dependencies": {
"@babel/runtime": "^7.20.1",
"aws-sdk": "^2.1246.0",
"core-js": "^3.26.0",
"fs-extra": "^10.1.0",
"jquery": "^3.6.1",
"meteor-node-stubs": "^1.2.5",
"web-push": "^3.5.0"
},
"env": {
"ROOT_URL": {
"description": "Full URL of your app, with protocol (scheme), ex.: https://example.com",
"required": true
},
"MONGO_URL": {
"description": "Full URL to mongodb, with protocol (scheme), ex.: mongodb://user:pass@host:port/db. Create free one at: https://mlab.com",
"required": true
}
"S3": {
"description": "[Optional] AWS S3 Bucket credentials object, format: {\"s3\":{\"key\": \"xxx\", \"secret\": \"xxx\", \"bucket\": \"xxx\", \"region\": \"xxx\"}}",
"required": false
},
"MAX_UPLOAD_SIZE_MB": {
"description": "Maximum allowed file size in MB for upload",
"required": true,
"value": 128
}
},
"keywords": [
"meteor",
"node",
"node.js",
"files",
"file",
"streaming",
"upload",
"ddp",
"sockets",
"cdn"
],
"image": "heroku/nodejs",
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "https://github.com/heroku/heroku-buildpack-apt"
}
],
"engines": {
"node": "^14.20.1",
"npm": "^6.14.17"
}
}