-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
101 lines (101 loc) · 3.19 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "Meteor-Files-Demo",
"version": "1.11.2",
"description": "Upload files with the speed of Meteor. Application build on top of ostrio:files package",
"repository": "https://github.com/VeliovGroup/Meteor-Files-Demo",
"website": "https://github.com/VeliovGroup/Meteor-Files-Demo",
"logo": "https://raw.githubusercontent.com/VeliovGroup/Meteor-Files/master/logo.png",
"scripts": {
"start": "node main.js"
},
"dependencies": {
"@babel/runtime": "^7.4.5",
"aws-sdk": "^2.485.0",
"bcrypt": "^3.0.6",
"browserslist": "^4.6.3",
"bson": "^4.0.2",
"bson-ext": "^2.0.2",
"caniuse-lite": "^1.0.30000978",
"core-js": "^3.1.4",
"dropbox": "^0.10.3",
"fs-extra": "^8.1.0",
"gm": "^1.23.1",
"meteor-node-stubs": "^0.4.1",
"request": "^2.88.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
},
"DROPBOX": {
"description": "[Optional] DropBox credentials object, format: {\"dropbox\":{\"key\": \"xxx\", \"secret\": \"xxx\", \"token\": \"xxx\"}}",
"required": false
},
"AWS S3 Bucket": {
"description": "[Optional] AWS S3 Bucket credentials object, format: {\"s3\":{\"key\": \"xxx\", \"secret\": \"xxx\", \"bucket\": \"xxx\", \"region\": \"xxx\"}}",
"required": false
},
"ACCOUNTS_METEOR_ID": {
"description": "[Optional] Meteor Account Services App ID (https://www.meteor.com/account-settings)",
"required": false
},
"ACCOUNTS_METEOR_SEC": {
"description": "[Optional] Meteor Account Services App Secret (https://www.meteor.com/account-settings)",
"required": false
},
"ACCOUNTS_GITHUB_ID": {
"description": "[Optional] GitHub OAuth application Client ID (https://github.com/settings/developers)",
"required": false
},
"ACCOUNTS_GITHUB_SEC": {
"description": "[Optional] GitHub OAuth application Client Secret (https://github.com/settings/developers)",
"required": false
},
"ACCOUNTS_TWITTER_ID": {
"description": "[Optional] Twitter Application API Key (https://apps.twitter.com)",
"required": false
},
"ACCOUNTS_TWITTER_SEC": {
"description": "[Optional] Twitter Application API Secret (https://apps.twitter.com)",
"required": false
},
"ACCOUNTS_FACEBOOK_ID": {
"description": "[Optional] Facebook App: App ID (https://developers.facebook.com/apps)",
"required": false
},
"ACCOUNTS_FACEBOOK_SEC": {
"description": "[Optional] Facebook App: App Secret (https://developers.facebook.com/apps)",
"required": false
}
},
"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": "8.15.1",
"npm": "6.9.0"
}
}