forked from feathersjs/feathers-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
42 lines (42 loc) · 1.06 KB
/
app.json
File metadata and controls
42 lines (42 loc) · 1.06 KB
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
{
"name": "Feathers Chat",
"description": "A real-time chat API built with Feathers and NeDB",
"keywords": [
"node",
"express",
"feathers",
"feathersjs",
"chat",
"realtime",
"nedb"
],
"website": "http://feathersjs.com",
"repository": "https://github.com/feathersjs/feathers-chat",
"logo": "https://pbs.twimg.com/profile_images/642420417190166529/IvapbqV1_400x400.png",
"success_url": "/",
"env": {
"FEATHERS_AUTH_SECRET": {
"description": "Your secret for encrypting JWT's used with Feather authentication",
"required": true,
"generator": "secret"
},
"NEDB_BASE_PATH": {
"description": "A location to store your NeDB files",
"required": true
},
"GITHUB_CLIENT_ID": {
"description": "Your github client id",
"required": true
},
"GITHUB_CLIENT_SECRET": {
"description": "Your Github client secret",
"required": true
},
"HOST": {
"description": "The url for your app",
"required": false
}
},
"image": "heroku/nodejs",
"addons": []
}