forked from veliovgroup/Meteor-Files
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
107 lines (107 loc) · 3.47 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
102
103
104
105
106
107
{
"name": "Meteor-Files-Demo",
"version": "1.7.1",
"description": "Upload files with speed on 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": {
"connect": "^3.4.1",
"dropbox": "0.10.3",
"knox": "^0.9.2",
"fibers": "^1.0.14",
"fs-extra": "0.30.0",
"http-proxy": "^1.13.2",
"keypress": "^0.2.1",
"meteor-deque": "*",
"meteor-node-stubs": "~0.2.0",
"meteor-promise": "0.7.2",
"promise": "7.1.1",
"mime": "^1.3.4",
"mongodb": "^2.1.15",
"progress": "^1.1.8",
"semver": "4.1.0",
"sockjs": "^0.3.16",
"source-map-support": "https://github.com/meteor/node-source-map-support/tarball/1912478769d76e5df4c365e147f25896aee6375e",
"stream-buffers": "^3.0.0",
"throttle": "1.0.3",
"underscore": "1.5.2",
"useragent": "^2.1.9",
"request": "2.75.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\", \"cfdomain\": \"https://xxx.cloudfront.net\"}}",
"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"
}
],
"engines": {
"node": "4.5.0",
"npm": "3.10.6"
}
}