-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathapp.json
33 lines (33 loc) · 992 Bytes
/
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
{
"name": "respass",
"description": "A WebSocket-based Chat System",
"repository": "https://github.com/sketchglass/respass/",
"logo": "https://cdn.rawgit.com/sketchglass/respass/master/ui/dist/logo.png",
"env": {
"API_URL": {
"description": "The application URL itself. Example: https://<your-app-name>.herokuapp.com"
},
"SESSION_SECRET": {
"description": "A secret key for sessions",
"generator": "secret"
},
"TWITTER_CONSUMER_KEY": {
"description": "The Twitter consumer key for Twitter login"
},
"TWITTER_CONSUMER_SECRET": {
"description": "The Twitter consumer secret for Twitter login"
},
"FRONTEND_URL": {
"description": "The application URL itself. Identical to API_URL."
},
"NPM_CONFIG_PRODUCTION": {
"description": "Must be false in this app. Set false to install Node devDependencies",
"value": "false"
}
},
"addons": [
{
"plan": "heroku-postgresql"
}
]
}